doubt we need the concept file anymore
[gitmo/MooseX-Types-Structured.git] / Makefile.PL
CommitLineData
65748864 1use inc::Module::Install;
2
3## All the required meta information
4all_from 'lib/MooseX/Meta/TypeConstraint/Structured.pm';
5
6## Module dependencies
7requires 'Moose' => '0.54';
8
9## Testing dependencies
10build_requires 'Test::More' => '0.70';
11build_requires 'Test::Exception' => '0.27';
12build_requires 'Test::Pod' => '1.14';
13build_requires 'Test::Pod::Coverage' => '1.08';
14
15## Instructions to Module::Install
16auto_install;
17tests_recursive;
18WriteAll;
19
201;