Rewrite -tag to :tag for Exporter.pm
[p5sagit/Sub-Exporter-Progressive.git] / Makefile.PL
CommitLineData
5cf6a81d 1use strict;
2use warnings FATAL => 'all';
3use 5.008001;
4use ExtUtils::MakeMaker;
5(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
6
dd634cf0 7my $key = eval { ExtUtils::MakeMaker->VERSION(6.56) } ? 'BUILD_REQUIRES' : 'PREREQ_PM' ;
8
5cf6a81d 9WriteMakefile(
10 NAME => 'Sub-Exporter-Progressive',
11 VERSION_FROM => 'lib/Sub/Exporter/Progressive.pm',
dd634cf0 12 $key => {
13 'Test::More' => 0.89,
14 }
5cf6a81d 15);