Auth 0.03, user_exists and a few pod fixes
[catagits/Catalyst-Plugin-Authentication.git] / Build.PL
CommitLineData
c7c003d3 1use strict;
2use Module::Build;
3
4my $build = Module::Build->new(
5 create_makefile_pl => 'traditional',
6 license => 'perl',
7 module_name => 'Catalyst::Plugin::Authentication',
8 requires => {
a1e5bd36 9 'perl' => '5.8.1',
10 'Catalyst' => '5.49',
c7c003d3 11 },
a1e5bd36 12 reccomends => { 'Want' => 0, },
c7c003d3 13 create_readme => 1,
14 sign => 1,
15);
16$build->create_build_script;
17