add . to @INC in Makefile.PL
[catagits/Catalyst-Devel.git] / share / Makefile.PL.tt
CommitLineData
239b5fc0 1[% startperl %]
2# IMPORTANT: if you delete this file your app will not work as
3# expected. You have been warned.
3b7ac9b8 4use lib '.';
d1840405 5use inc::Module::Install 1.02;
01aa309c 6use Module::Install::Catalyst; # Complain loudly if you don't have
f203ac2a 7 # Catalyst::Devel installed or haven't said
8 # 'make dist' to create a standalone tarball.
239b5fc0 9
10name '[% dir %]';
11all_from '[% path %]';
12
13requires 'Catalyst::Runtime' => '[% catalyst_version %]';
14requires 'Catalyst::Plugin::ConfigLoader';
15requires 'Catalyst::Plugin::Static::Simple';
16requires 'Catalyst::Action::RenderView';
8662edf6 17requires 'Moose';
18requires 'namespace::autoclean';
239b5fc0 19requires 'Config::General'; # This should reflect the config file format you've chosen
20 # See Catalyst::Plugin::ConfigLoader for supported formats
0c34c8b8 21test_requires 'Test::More' => '0.88';
239b5fc0 22catalyst;
23
24install_script glob('script/*.pl');
25auto_install;
26WriteAll;