Bum the Getopt::Long::Descriptive dependency to 0.081 in an attempt to avoid test...
[gitmo/MooseX-Getopt.git] / Makefile.PL
CommitLineData
b38b654a 1use strict;
2use warnings;
5f905015 3use inc::Module::Install 0.91;
521a8c3f 4
b38b654a 5if ($Module::Install::AUTHOR) {
6 require Module::Install::AuthorRequires;
7 require Module::Install::AuthorTests;
8}
9
521a8c3f 10name 'MooseX-Getopt';
11license 'perl';
12
13all_from 'lib/MooseX/Getopt.pm';
14
e2dcd71d 15requires 'Moose' => '0.56';
521a8c3f 16requires 'Getopt::Long' => '2.37';
17
18# optional
2a7ee26b 19requires 'Getopt::Long::Descriptive' => '0.081';
521a8c3f 20
2df32764 21build_requires 'Test::Moose';
521a8c3f 22build_requires 'Test::More' => '0.62';
23build_requires 'Test::Exception' => '0.21';
24
b38b654a 25author_requires 'Test::Pod' => 1.14;
26author_requires 'Test::Pod::Coverage' => '1.04';
27author_tests('t/author');
28
95b733a1 29resources repository => 'git://git.moose.perl.org/MooseX-Getopt.git';
30
cd3a7ff7 31auto_manifest();
521a8c3f 32
33WriteAll;