Prepare release.
[catagits/Catalyst-Plugin-Authentication.git] / Makefile.PL
CommitLineData
d4201786 1use inc::Module::Install 0.87;
f35dde03 2
c7b6526a 3if ( $Module::Install::AUTHOR ) {
4 system( 'pod2text lib/Catalyst/Plugin/Authentication.pm > README' )
5 and die;
6 require Module::Install::AuthorTests;
85c6f23d 7}
8
71f2a7df 9perl_version '5.008001';
10
f35dde03 11name 'Catalyst-Plugin-Authentication';
12all_from 'lib/Catalyst/Plugin/Authentication.pm';
13
f35dde03 14requires 'Catalyst::Runtime';
15requires 'Class::Inspector';
47cede3d 16requires 'MRO::Compat';
f35dde03 17requires 'Catalyst::Plugin::Session' => '0.10';
18
4b33bb96 19test_requires 'Test::More' => '0.88';
71f2a7df 20test_requires 'Test::Exception';
c7b6526a 21test_requires 'Class::MOP';
22test_requires 'Moose';
23
24author_tests 't/author';
948295dd 25
f35dde03 26auto_install;
c7b6526a 27resources repository => 'http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Plugin-Authentication/0.10000/trunk';
dc09e932 28
f35dde03 29WriteAll;