news tests for API and coercions, more tests for both of those and additional docs.
[gitmo/MooseX-Types-Structured.git] / Makefile.PL
CommitLineData
65748864 1use inc::Module::Install;
2
3## All the required meta information
d24da8ec 4name 'MooseX-Types-Structured';
72a801bd 5all_from 'lib/MooseX/Types/Structured.pm';
d24da8ec 6abstract 'Moose Type Constraint classes for Structured Types';
309c8a6c 7author 'John Napiorkowski <jjnapiork@cpan.org>';
8version '0.01';
9license 'perl';
10perl_version '5.8.8';
65748864 11
12## Module dependencies
a4a88fef 13requires 'Moose' => '0.60';
14requires 'MooseX::Types' => '0.06';
65748864 15
16## Testing dependencies
17build_requires 'Test::More' => '0.70';
18build_requires 'Test::Exception' => '0.27';
19build_requires 'Test::Pod' => '1.14';
20build_requires 'Test::Pod::Coverage' => '1.08';
21
22## Instructions to Module::Install
23auto_install;
24tests_recursive;
25WriteAll;
26
271;