updates so it's more releaseable
[gitmo/MooseX-Storage.git] / Makefile.PL
1 use strict;
2 use warnings;
3 use ExtUtils::MakeMaker;
4
5 WriteMakefile(
6     NAME          => 'MooseX::Storage',
7     AUTHOR        => 'Chris Prather <perigrin@cpan.org>, Stevan Little <stevan@iinteractive.com>',
8     VERSION_FROM  => 'lib/MooseX/Storage.pm',
9     ABSTRACT_FROM => 'lib/MooseX/Storage.pm',
10     PL_FILES      => {},
11     PREREQ_PM     => {
12         'Test::More' => 0,
13         'Moose'      => 0,
14         'JSON::Any'  => 0,
15     },
16     dist  => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
17     clean => { FILES    => 'MooseX-Storage-*' },
18 );