foo
[gitmo/MooseX-AttributeHelpers.git] / Build.PL
CommitLineData
22d869ff 1use Module::Build;
2
3use strict;
4
5my $build = Module::Build->new(
6 module_name => 'MooseX::AttributeHelpers',
7 license => 'perl',
8 requires => {
69dde336 9 'Moose' => '0.21',
22d869ff 10 },
11 optional => {
12 },
13 build_requires => {
14 'Test::More' => '0.62',
15 'Test::Exception' => '0.21',
16 },
17 create_makefile_pl => 'traditional',
18 recursive_test_files => 1,
19 add_to_cleanup => [
20 'META.yml', '*.bak', '*.gz', 'Makefile.PL',
21 ],
22);
23
24$build->create_build_script;
25