c27a65a5648e7e9df9245528e3337a128a178aa0
[catagits/Catalyst-Plugin-Authentication.git] / Makefile.PL
1 use inc::Module::Install 0.67;
2
3 if( -e 'MANIFEST.SKIP' ) {
4     system( 'pod2text lib/Catalyst/Plugin/Authentication.pm > README' );
5 }
6
7 perl_version '5.008001';
8
9 name 'Catalyst-Plugin-Authentication';
10 all_from 'lib/Catalyst/Plugin/Authentication.pm';
11
12 requires 'Catalyst::Runtime';
13 requires 'Class::Inspector';
14 requires 'Catalyst::Plugin::Session' => '0.10';
15
16 test_requires 'Test::More';
17 test_requires 'Test::Exception';
18 test_requires 'Test::MockObject';
19
20 auto_install;
21 WriteAll;