Fix autor deps for Test::NoTabs
[catagits/Catalyst-Plugin-Authentication.git] / Makefile.PL
CommitLineData
1b409445 1use strict;
2use warnings;
d4201786 3use inc::Module::Install 0.87;
1b409445 4use Module::Install::AuthorRequires;
5use Module::Install::AuthorTests;
f35dde03 6
c7b6526a 7if ( $Module::Install::AUTHOR ) {
8 system( 'pod2text lib/Catalyst/Plugin/Authentication.pm > README' )
9 and die;
85c6f23d 10}
11
71f2a7df 12perl_version '5.008001';
13
f35dde03 14name 'Catalyst-Plugin-Authentication';
15all_from 'lib/Catalyst/Plugin/Authentication.pm';
16
f35dde03 17requires 'Catalyst::Runtime';
18requires 'Class::Inspector';
47cede3d 19requires 'MRO::Compat';
f35dde03 20requires 'Catalyst::Plugin::Session' => '0.10';
21
4b33bb96 22test_requires 'Test::More' => '0.88';
71f2a7df 23test_requires 'Test::Exception';
c7b6526a 24test_requires 'Class::MOP';
25test_requires 'Moose';
26
4a9f962f 27author_requires 'Test::Pod' => '1.14';
28author_requires 'Test::Pod::Coverage' => '1.04';
29author_requires 'Test::NoTabs';
1b409445 30author_requires 'Test::WWW::Mechanize::Catalyst';
31author_requires 'Catalyst::Plugin::Session';
32author_requires 'Catalyst::Plugin::Session::State::Cookie';
33author_requires 'Digest::SHA1';
34
c7b6526a 35author_tests 't/author';
948295dd 36
f35dde03 37auto_install;
1d241ed7 38resources repository => 'git://git.shadowcat.co.uk/catagits/Catalyst-Plugin-Authentication.git';
dc09e932 39
f35dde03 40WriteAll;