if configfile is a coderef call it and write some tests for it
[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
2df32764 14build_requires 'Test::Moose';
521a8c3f 15build_requires 'Test::More' => '0.62';
16build_requires 'Test::Exception' => '0.21';
17
95b733a1 18resources repository => 'git://git.moose.perl.org/MooseX-Getopt.git';
19
cd3a7ff7 20auto_manifest();
521a8c3f 21
22WriteAll;