Release commit for 1.000003
[p5sagit/Safe-Isa.git] / Makefile.PL
CommitLineData
e6995dc6 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
7WriteMakefile(
dcf9b5b3 8 NAME => 'Safe::Isa',
e6995dc6 9 VERSION_FROM => 'lib/Safe/Isa.pm',
944651ea 10
11 META_MERGE => {
12 dynamic_config => 0,
13
14 resources => {
15 # r/w: p5sagit@git.shadowcat.co.uk:Safe-Isa.git
16 repository => 'git://git.shadowcat.co.uk/p5sagit/Safe-Isa.git',
17 homepage => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Safe-Isa.git',
18 },
19
20 PREREQ_PM => {
21 'Exporter' => 0,
22 'Scalar::Util' => 0,
23 },
24 },
e6995dc6 25);