add conflict styling to analysis table
[scpubgit/stemmatology.git] / TreeOfTexts / Makefile.PL
1 #!/usr/bin/env perl
2 # IMPORTANT: if you delete this file your app will not work as
3 # expected.  You have been warned.
4 use inc::Module::Install;
5 use Module::Install::Catalyst; # Complain loudly if you don't have
6                                # Catalyst::Devel installed or haven't said
7                                # 'make dist' to create a standalone tarball.
8
9 name 'TreeOfTexts';
10 all_from 'lib/TreeOfTexts.pm';
11
12 requires 'Catalyst::Runtime' => '5.90002';
13 requires 'Catalyst::Plugin::ConfigLoader';
14 requires 'Catalyst::Plugin::Static::Simple';
15 requires 'Catalyst::Plugin::Unicode::Encoding';
16 requires 'Catalyst::Action::RenderView';
17 requires 'Catalyst::Model::Adaptor';
18 requires 'Moose';
19 requires 'namespace::autoclean';
20 requires 'Config::General'; # This should reflect the config file format you've chosen
21                  # See Catalyst::Plugin::ConfigLoader for supported formats
22 test_requires 'Test::More' => '0.88';
23 catalyst;
24
25 install_script glob('script/*.pl');
26 auto_install;
27 WriteAll;