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