Had duplicate version and authority in MethodProvider.pm
[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 => {
0f31cc28 9 'Class::MOP' => '0.47',
10 'Moose' => '0.30',
22d869ff 11 },
12 optional => {
13 },
14 build_requires => {
15 'Test::More' => '0.62',
16 'Test::Exception' => '0.21',
17 },
18 create_makefile_pl => 'traditional',
19 recursive_test_files => 1,
20 add_to_cleanup => [
21 'META.yml', '*.bak', '*.gz', 'Makefile.PL',
22 ],
23);
24
25$build->create_build_script;
26