FORGOT THE DEPENDENCY
[p5sagit/Package-Variant.git] / Makefile.PL
CommitLineData
eacc208a 1use strict;
2use warnings FATAL => 'all';
3use ExtUtils::MakeMaker;
4
6980ac23 5(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
6
eacc208a 7WriteMakefile(
8 NAME => 'Package-Variant',
9 VERSION_FROM => 'lib/Package/Variant.pm',
10 PREREQ_PM => {
11 strictures => 1,
12 Carp => 0,
17c48f72 13 'Import::Into' => 1,
14 'Module::Runtime' => '0.013',
eacc208a 15 },
16);