add build files for C::P::*::Htpasswd
[catagits/Catalyst-Authentication-Store-Htpasswd.git] / Build.PL
1 use strict;
2 use Module::Build;
3
4 my $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