Refactor a bit more, doc work
[catagits/Catalyst-Authentication-Credential-HTTP.git] / Build.PL
1 use strict;
2 use Module::Build;
3 my $build = Module::Build->new(
4     create_makefile_pl => 'traditional',
5     license            => 'perl',
6     module_name        => 'Catalyst::Plugin::Authentication::Credential::HTTP',
7     requires           => {
8         'perl'                             => '5.8.1',
9         'Catalyst'                         => '5.49',
10         'Catalyst::Plugin::Authentication' => 0,
11         'String::Escape'                   => 0,
12         'URI::Escape'                      => 0,
13         'Test::MockObject'                 => '1.01',
14         'Test::Exception'                  => 0,
15         'Data::UUID'                       => 0.11
16     },
17     create_readme => 1,
18     sign          => 0,
19 );
20 $build->create_build_script;