Update manifest and ignore property
[gitmo/MooseX-StrictConstructor.git] / Build.PL
1 use strict;
2 use warnings;
3
4 use Module::Build;
5
6 my $builder = Module::Build->new
7     ( module_name        => 'MooseX::StrictConstructor',
8       license            => 'perl',
9       requires           => { 'Test::More' => 0,
10                             },
11       create_makefile_pl => 'passthrough',
12       create_readme      => 1,
13       sign               => 1,
14     );
15
16 $builder->create_build_script();