Update .gitignore
[gitmo/MooseX-StrictConstructor.git] / Build.PL
CommitLineData
32726d88 1use strict;
2use warnings;
3
0a0390cc 4require 5.008;
c001451a 5
32726d88 6use Module::Build;
7
5a0d4921 8my $builder = Module::Build->new(
9 module_name => 'MooseX::StrictConstructor',
10 license => 'perl',
11 requires => {
54cc4bad 12 'Moose' => '0.74',
13 },
14 build_requires => {
15 'Test::More' => '0.88',
5a0d4921 16 },
17 create_makefile_pl => 'passthrough',
18 create_readme => 1,
19 sign => 1,
20);
32726d88 21
22$builder->create_build_script();