Add test for strange --version handling
[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
38b93252 19requires 'Getopt::Long::Descriptive' => '0.077';
521a8c3f 20
2df32764 21build_requires 'Test::Moose';
521a8c3f 22build_requires 'Test::More' => '0.62';
23build_requires 'Test::Exception' => '0.21';
a7474a4d 24build_requires 'Capture::Tiny' => '0';
521a8c3f 25
b38b654a 26author_requires 'Test::Pod' => 1.14;
27author_requires 'Test::Pod::Coverage' => '1.04';
28author_tests('t/author');
29
95b733a1 30resources repository => 'git://git.moose.perl.org/MooseX-Getopt.git';
31
cd3a7ff7 32auto_manifest();
521a8c3f 33
34WriteAll;