moving MooseX::Storage
[gitmo/MooseX-Storage.git] / Makefile.PL
CommitLineData
e59193fb 1use strict;
2use warnings;
3use ExtUtils::MakeMaker;
4
5WriteMakefile(
681ad95e 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 => {
e59193fb 12 'Test::More' => 0,
681ad95e 13 'Moose' => 0,
14 'JSON::Any' => 0,
e59193fb 15 },
681ad95e 16 dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
17 clean => { FILES => 'MooseX-Storage-*' },
e59193fb 18);