add build files for C::P::*::Htpasswd
[catagits/Catalyst-Authentication-Store-Htpasswd.git] / Build.PL
CommitLineData
12cefea8 1use strict;
2use Module::Build;
3
4my $build = Module::Build->new(
5 create_makefile_pl => 'traditional',
6 license => 'perl',
7 create_readme => 1,
8
9 module_name => 'Catalyst::Plugin::Authentication::Store::Htpasswd',
10 requires => {
11 'Catalyst::Plugin::Authentication' => '0.01',
12 'Authen::Htpasswd' => '0.13',
13 },
14
15 dist_author => 'David Kamholz <dkamholz@cpan.org>',
16);
17$build->create_build_script;
18