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