X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;fp=Makefile.PL;h=317458bc8af804c688f996df9084b1f419dfada1;hb=521a8c3f43514b93e003783a9209d137804166bf;hp=0000000000000000000000000000000000000000;hpb=2814de271834cb33fc9710088537c173b17b52eb;p=gitmo%2FMooseX-Getopt.git diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000..317458b --- /dev/null +++ b/Makefile.PL @@ -0,0 +1,20 @@ +use inc::Module::Install; + +name 'MooseX-Getopt'; +license 'perl'; + +all_from 'lib/MooseX/Getopt.pm'; + +requires 'Moose' => '0.43'; +requires 'Getopt::Long' => '2.37'; + +# optional +requires 'Getopt::Long::Descriptive' => 0; + +build_requires 'Test::More' => '0.62'; +build_requires 'Test::Exception' => '0.21'; + +tests_recursive(); +auto_install; + +WriteAll;