Use add_attribute rather than _process_attribute to add attributes
[gitmo/MooseX-ClassAttribute.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::ClassAttribute',
8       license             => 'perl',
9       requires            => { 'B'          => 0,
10                                'Exporter'   => 0,
11                                'Moose'      => 0.26,
12                                'Sub::Name'  => 0,
13                              },
14       build_requires      => { 'Scalar::Util' => 0,
15                                'Test::More'   => 0,
16                              },
17       create_makefile_pl  => 'passthrough',
18       create_readme       => 1,
19       sign                => 1,
20     );
21
22 $builder->create_build_script();