mixin stuff
[gitmo/Moose.git] / Build.PL
1 use Module::Build;
2
3 use strict;
4
5 my $build = Module::Build->new(
6     module_name => 'Moose',
7     license => 'perl',
8     requires => {
9         'Scalar::Util' => '1.18',
10         'Carp'         => '0',
11         'Class::MOP'   => '0.21',
12         'Sub::Name'    => '0.02',
13     },
14     optional => {
15     },
16     build_requires => {
17         'Test::More'      => '0.47',
18         'Test::Exception' => '0.21',
19     },
20     create_makefile_pl => 'traditional',
21     recursive_test_files => 1,
22     add_to_cleanup => [
23         'META.yml', '*.bak', '*.gz', 'Makefile.PL',
24     ],
25 );
26
27 $build->create_build_script;
28