demand Module::Install 0.75
[gitmo/MooseX-Attribute-Cached.git] / Makefile.PL
1 use inc::Module::Install 0.75;
2
3 perl_version '5.008008';
4
5 name     'MooseX-Attribute-Cached';
6 all_from 'lib/MooseX/Attribute/Cached.pm';
7 author   'John Napiorkowski <john.napiorkowski@takkle.com>';
8
9 requires 'Moose' => '0.44';
10
11 build_requires 'Test::More' => '0.70';
12 build_requires 'Test::Pod' => '1.14';
13 build_requires 'Test::Pod::Coverage' => '1.08';
14
15 auto_install;
16 tests "t/*.t t/*/*.t";
17 WriteAll;
18