Fatal warns in Makefile.PL is overkill
[p5sagit/Sub-Exporter-Progressive.git] / Makefile.PL
CommitLineData
5cf6a81d 1use strict;
67830593 2use warnings;
3
6a204448 4use 5.006;
5cf6a81d 5use ExtUtils::MakeMaker;
6(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
7
cfb0d657 8my %deps = (
69c9647c 9 PREREQ_PM => {
10 Exporter => '5.58',
11 },
cfb0d657 12);
dd634cf0 13my $key = eval { ExtUtils::MakeMaker->VERSION(6.56) } ? 'BUILD_REQUIRES' : 'PREREQ_PM' ;
35a1e2d4 14$deps{$key}{'Test::More'} = '0.88';
dd634cf0 15
5cf6a81d 16WriteMakefile(
17 NAME => 'Sub-Exporter-Progressive',
18 VERSION_FROM => 'lib/Sub/Exporter/Progressive.pm',
cfb0d657 19 %deps,
5cf6a81d 20);