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