use 5.008004;
WriteMakefile(
NAME => 'Algorithm::DLX',
VERSION_FROM => 'lib/Algorithm/DLX.pm',
ABSTRACT => "Solve the Exact cover problem with Donald Knuth's DLX Algorithm",
AUTHOR => 'James Hammer',
LICENSE => 'freebsd',
MIN_PERL_VERSION => '5.008004',
PREREQ_PM => {
'strict' => 1,
'warnings' => 1,
},
TEST_REQUIRES => {
List::Util => 1.68,
},
test => {TESTS => 't/*.t'},
(eval { ExtUtils::MakeMaker->VERSION(7.70) } ? (META_MERGE => {
'meta-spec' => { version => 0.03 },
resources => {
repository => {
type => 'git',
},
}})
: ()
),
);