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