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