cleaned up and clarified docs, made the load teset work again, fixed Makefile.PL...
[gitmo/MooseX-Types-Structured.git] / Makefile.PL
CommitLineData
65748864 1use inc::Module::Install;
2
3## All the required meta information
309c8a6c 4abstract 'Supporting structured type contraints';
5author 'John Napiorkowski <jjnapiork@cpan.org>';
6version '0.01';
7license 'perl';
8perl_version '5.8.8';
65748864 9
10## Module dependencies
11requires 'Moose' => '0.54';
12
13## Testing dependencies
14build_requires 'Test::More' => '0.70';
15build_requires 'Test::Exception' => '0.27';
16build_requires 'Test::Pod' => '1.14';
17build_requires 'Test::Pod::Coverage' => '1.08';
18
19## Instructions to Module::Install
20auto_install;
21tests_recursive;
22WriteAll;
23
241;