remove some debugging statements
[scpubgit/stemmatology.git] / stemmaweb / Makefile.PL
CommitLineData
dbcf12a6 1#!/usr/bin/env perl
2# IMPORTANT: if you delete this file your app will not work as
3# expected. You have been warned.
4use inc::Module::Install;
5use 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
5c9ecf66 9name 'stemmaweb';
10all_from 'lib/stemmaweb.pm';
dbcf12a6 11
12requires 'Catalyst::Runtime' => '5.90002';
13requires 'Catalyst::Plugin::ConfigLoader';
14requires 'Catalyst::Plugin::Static::Simple';
9c52877e 15requires 'Catalyst::Plugin::Unicode::Encoding';
dbcf12a6 16requires 'Catalyst::Action::RenderView';
3837c155 17requires 'Catalyst::Model::KiokuDB';
6b70c348 18requires 'Catalyst::View::Download::Plain';
19requires 'Catalyst::View::JSON';
20requires 'Catalyst::View::TT';
dbcf12a6 21requires 'Moose';
bffafb73 22requires 'TryCatch';
dbcf12a6 23requires 'namespace::autoclean';
24requires 'Config::General'; # This should reflect the config file format you've chosen
25 # See Catalyst::Plugin::ConfigLoader for supported formats
26test_requires 'Test::More' => '0.88';
27catalyst;
28
29install_script glob('script/*.pl');
30auto_install;
31WriteAll;