No need to actually get the instance, since we ignore it, but make
[gitmo/MooseX-ClassAttribute.git] / Build.PL
CommitLineData
4dee0fd3 1use strict;
2use warnings;
3
4use Module::Build;
5
6my $builder = Module::Build->new
7 ( module_name => 'MooseX::ClassAttribute',
8 license => 'perl',
b2e0e01e 9 requires => { 'Moose' => '0.57',
10 'MooseX::AttributeHelpers' => '0.13',
2809c8f3 11 },
b2e0e01e 12 build_requires => { 'Scalar::Util' => '0',
13 'Test::More' => '0',
4dee0fd3 14 },
15 create_makefile_pl => 'passthrough',
16 create_readme => 1,
17 sign => 1,
18 );
19
20$builder->create_build_script();