add some metadata
[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   CONFIGURE_REQUIRES => {
11     'ExtUtils::MakeMaker' => '6.55_01', # for BUILD_REQUIRES
12   },
13   BUILD_REQUIRES => { 'Test::Fatal' => 0 },
14   PREREQ_PM => {
15     strictures => 1,
16     Carp => 0,
17     'Import::Into' => 1,
18     'Module::Runtime' => '0.013',
19   },
20
21   META_MERGE => {
22     dynamic_config => 0,
23
24     resources => {
25       # r/w: p5sagit@git.shadowcat.co.uk:Package-Variant.git
26       repository => 'git://git.shadowcat.co.uk/p5sagit/Package-Variant.git',
27       homepage => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Package-Variant.git',
28     },
29   },
30 );