1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
#!/usr/bin/perl -w
use strict;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'MooseX::Types::VariantTable',
VERSION_FROM => 'lib/MooseX/Types/VariantTable.pm',
INSTALLDIRS => 'site',
SIGN => 1,
PL_FILES => { },
PREREQ_PM => {
'Test::use::ok' => 0,
'Test::Exception' => 0,
'Sub::Exporter' => 0,
'Moose' => '0.75', # for Class tc to sort properly it needs a fixed is_subtype_of, Num as subtype of Str
'MooseX::Types::Structured' => '0.12',
'MooseX::Clone' => '0.03', # Copy
},
);
|