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