Initial import of Config::Any (refactored from Catalyst::Plugin::ConfigLoader), and...
[p5sagit/Config-Any.git] / Build.PL
1 use strict;
2 use warnings;
3 use Module::Build;
4
5 my $builder = Module::Build->new(
6     module_name         => 'Config::Any',
7     license             => 'perl',
8     dist_author         => 'Joel Bernstein <rataxis@cpan.org>',
9     dist_version_from   => 'lib/Config/Any.pm',
10     requires => {
11         'Test::More' => 0,
12         'version'    => 0,
13                 'Module::Pluggable' => '3.01'
14     },
15     add_to_cleanup      => [ 'Config-Any-*' ],
16 );
17
18 $builder->create_build_script();