foo
[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.29_02',
12         'Sub::Name'          => '0.02',
13         'UNIVERSAL::require' => '0.10',
14         'Sub::Exporter'      => '0.954',
15         'Sub::Install'       => '0.92',        
16     },
17     optional => {
18     },
19     build_requires => {
20         'Test::More'       => '0.62',
21         'Test::Exception'  => '0.21',
22         'Test::LongString' => '0',
23     },
24     create_makefile_pl => 'traditional',
25     recursive_test_files => 1,
26     add_to_cleanup => [
27         'META.yml', '*.bak', '*.gz', 'Makefile.PL',
28     ],
29 );
30
31 $build->create_build_script;
32