Ints can also be negative
[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.25',
12         'Sub::Name'          => '0.02',
13         'UNIVERSAL::require' => '0',
14         'Sub::Exporter'      => '0', # update this when rjbs releases
15     },
16     optional => {
17     },
18     build_requires => {
19         'Test::More'      => '0.47',
20         'Test::Exception' => '0.21',
21     },
22     create_makefile_pl => 'traditional',
23     recursive_test_files => 1,
24     add_to_cleanup => [
25         'META.yml', '*.bak', '*.gz', 'Makefile.PL',
26     ],
27 );
28
29 $build->create_build_script;
30