rollback some stuff to reset my brain a bit
[gitmo/MooseX-Types-Structured.git] / Makefile.PL
1 use inc::Module::Install;
2
3 ## All the required meta information
4 name     'MooseX-Types-Structured';
5 all_from 'MooseX::Types::Structured';
6 abstract 'Moose Type Constraint classes for Structured Types';
7 author 'John Napiorkowski <jjnapiork@cpan.org>';
8 version '0.01';
9 license 'perl';
10 perl_version '5.8.8';
11
12 ## Module dependencies
13 requires 'Moose' => '0.57';
14
15 ## Testing dependencies
16 build_requires 'Test::More' => '0.70';
17 build_requires 'Test::Exception' => '0.27';
18 build_requires 'Test::Pod' => '1.14';
19 build_requires 'Test::Pod::Coverage' => '1.08';
20
21 ## Instructions to Module::Install
22 auto_install;
23 tests_recursive;
24 WriteAll;
25
26 1;