Version 0.06
[gitmo/MooseX-MetaDescription.git] / Makefile.PL
1 use strict;
2 use warnings;
3 use inc::Module::Install 0.67;
4 use Module::Install::AuthorRequires;
5 use Module::Install::AuthorTests;
6
7 name 'MooseX-MetaDescription';
8 all_from 'lib/MooseX/MetaDescription.pm';
9 license 'perl';
10
11 # prereqs
12 requires 'Moose' => 0.40;
13
14 # things the tests need
15 test_requires 'Test::More' => '0.62';
16 test_requires 'Test::Exception';
17
18 author_requires 'Test::Pod' => '1.14';
19 author_requires 'Test::Pod::Coverage';
20
21 tests('t/*.t');
22 author_tests 't-author';
23
24 WriteAll();
25