fix Float which doesn't exist with Num which does
[gitmo/MooseX-Getopt.git] / Makefile.PL
1 use inc::Module::Install;
2
3 name 'MooseX-Getopt';
4 license 'perl';
5
6 all_from 'lib/MooseX/Getopt.pm';
7
8 requires 'Moose'        => '0.43';
9 requires 'Getopt::Long' => '2.37';
10
11 # optional
12 requires 'Getopt::Long::Descriptive' => 0;
13
14 build_requires 'Test::More'       => '0.62';
15 build_requires 'Test::Exception'  => '0.21';
16
17 tests_recursive();
18 auto_install;
19
20 WriteAll;