checkpoint
[p5sagit/Class-C3-Componentised.git] / Build.PL
1 use strict;
2 use warnings;
3 use Module::Build;
4
5 my $builder = Module::Build->new(
6     module_name         => 'Class::C3::Componentised',
7     dist_author         => 'Matt S. Trout <mst@shadowcatsystems.co.uk>',
8     license             => 'perl',
9     create_makefile_pl  => 'passthrough',
10     dist_version_from   => 'lib/Class/C3/Componentised.pm',
11     requires => {
12         'Class::C3' => 0,
13     },
14     build_requires => {
15         'Test::More' => 0,
16     },
17     add_to_cleanup      => [ 'Class-C3-Componentised-*' ],
18 );
19
20 $builder->create_build_script();