Release commit for 1.000018
[p5sagit/Module-Metadata.git] / Makefile.PL
CommitLineData
a4891190 1use strict;
2use warnings FATAL => 'all';
3use ExtUtils::MakeMaker;
5661e08c 4use 5.006;
a4891190 5
f1d18ad3 6(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
a4891190 7
8WriteMakefile(
9 NAME => 'Module::Metadata',
4850170c 10 VERSION_FROM => 'lib/Module/Metadata.pm',
d903922c 11 ABSTRACT_FROM => 'lib/Module/Metadata.pm',
12 LICENSE => 'perl',
c3a12878 13 MIN_PERL_VERSION => '5.006',
4850170c 14 PREREQ_PM => {
8f9f6d27 15 'Carp' => 0,
16 'File::Find' => 0,
17 'File::Spec' => 0,
18 'IO::File' => 0,
19 'strict' => 0,
eed8b6fa 20 'warnings' => 0,
8f9f6d27 21 'vars' => 0,
22 'version' => 0.87,
23 'warnings' => 0,
8d86d0e2 24 $] < 5.008
25 ? ( 'IO::Scalar' => 0 )
26 : ()
27 ,
4850170c 28 },
7e57a40e 29 META_MERGE => {
5ebfae52 30 'meta-spec' => { version => 2 },
7e57a40e 31 dynamic_config => 0,
32 resources => {
33 # r/w: p5sagit@git.shadowcat.co.uk:Module-Metadata.git
e39df202 34 repository => {
35 url => 'git://git.shadowcat.co.uk/p5sagit/Module-Metadata.git',
36 web => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Module-Metadata.git',
37 type => 'git',
38 },
39 bugtracker => {
40 mailto => 'bug-Module-Metadata@rt.cpan.org',
41 web => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Module-Metadata',
42 },
7e57a40e 43 },
44 },
a4891190 45);