added Build.PL
[catagits/Catalyst-Authentication-Credential-HTTP-Proxy.git] / Build.PL
1 use strict;
2 use Module::Build;
3
4 my $build = Module::Build->new(
5     create_makefile_pl => 'passthrough',
6     license            => 'perl',
7     module_name        => 'Catalyst::Plugin::Authentication::Credential::TypeKey',
8     requires           => {
9         'Catalyst'         => '5.5',
10         'Catalyst::Plugin::Authentication' => 0,
11         'Authen::TypeKey'
12
13     },
14     create_readme => 1,
15 );
16 $build->create_build_script;
17