atomic file stuff
[gitmo/MooseX-Storage.git] / Build.PL
1 use strict;
2 use warnings;
3 use Module::Build;
4
5 my $builder = Module::Build->new(
6     module_name         => 'MooseX::Storage',
7     license             => 'perl',
8     dist_author         => 'Chris Prather <perigrin@cpan.org>, Stevan Little <stevan@iinteractive.com>',
9     dist_version_from   => 'lib/MooseX/Storage.pm',
10     requires => {
11         'Test::More' => 0,
12         'Moose'      => 0,
13         'JSON::Any'  => 0,
14     },
15     add_to_cleanup      => [ 'MooseX-Storage-*' ],
16 );
17
18 $builder->create_build_script();