Remove _config of evil
[catagits/Catalyst-Authentication-Credential-OpenID.git] / Makefile.PL
1 use inc::Module::Install 0.87;
2 use strict;
3 use warnings;
4
5 name      "Catalyst-Authentication-Credential-OpenID";
6 all_from  "lib/Catalyst/Authentication/Credential/OpenID.pm";
7 author    "Ashley Pond V <ashley\@cpan.org>";
8
9 requires "Class::Accessor::Fast" => undef;
10 requires "HTML::Parser"     => "3";
11 requires "LWP::UserAgent"    => undef;
12 requires "Cache::FastMmap"    => "1.28";
13 requires "Catalyst"       => "5.7";
14 requires "Catalyst::Devel"    => "1";
15 requires "Net::OpenID::Consumer" => "1.03";
16 requires "Catalyst::Authentication::User::Hash" => undef;
17 requires "Catalyst::Plugin::Session::Store::FastMmap" => "0.05";
18 requires "Catalyst::Plugin::Session::State::Cookie" => "0.08";
19 requires "Catalyst::Engine::HTTP" => undef;
20
21 recommends "Config::General"   => "2";
22 recommends "YAML"        => "0.6";
23 recommends "Math::BigInt"    => undef;
24 recommends "LWPx::ParanoidAgent" => "1.03";
25
26 test_requires "Catalyst::Engine::HTTP";
27
28 test_requires "Test::More"      => "0.42";
29 # test_requires "Test::WWW::Mechanize" => "1.20";
30 # test_requires "Net::OpenID::Server" => "1.02";
31 # test_requires "Net::DNS"       => undef;
32 # test_requires "IO::Socket::INET"   => undef;
33
34 if ( $Module::Install::AUTHOR )
35 {
36     system("pod2text lib/Catalyst/Authentication/Credential/OpenID.pm > README") == 0
37         or die "Couldn't update the README";
38 }
39
40 auto_install;
41 resources repository => 'http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Authentication-Credential-OpenID/';
42
43 WriteAll;
44
45 __END__