first guess at structured types, with proof of concept and first shot at the type...
[gitmo/MooseX-Types-Structured.git] / Makefile.PL
1 use inc::Module::Install;
2
3 ## All the required meta information
4 all_from 'lib/MooseX/Meta/TypeConstraint/Structured.pm';
5
6 ## Module dependencies
7 requires 'Moose' => '0.54';
8
9 ## Testing dependencies
10 build_requires 'Test::More' => '0.70';
11 build_requires 'Test::Exception' => '0.27';
12 build_requires 'Test::Pod' => '1.14';
13 build_requires 'Test::Pod::Coverage' => '1.08';
14
15 ## Instructions to Module::Install
16 auto_install;
17 tests_recursive;
18 WriteAll;
19
20 1;