really commit
[gitmo/MooseX-Getopt.git] / Makefile.PL
CommitLineData
84f85ea4 1use inc::Module::Install 0.75;
521a8c3f 2
3name 'MooseX-Getopt';
4license 'perl';
5
6all_from 'lib/MooseX/Getopt.pm';
7
e2dcd71d 8requires 'Moose' => '0.56';
521a8c3f 9requires 'Getopt::Long' => '2.37';
10
11# optional
12requires 'Getopt::Long::Descriptive' => 0;
13
14build_requires 'Test::More' => '0.62';
15build_requires 'Test::Exception' => '0.21';
16
17tests_recursive();
cd3a7ff7 18auto_manifest();
521a8c3f 19
20WriteAll;