re-specify minimum perl version, add some metadata
[catagits/Web-Simple.git] / Makefile.PL
CommitLineData
e4e3b52c 1use strict;
2use warnings FATAL => 'all';
1f993d62 3use 5.008001;
4use ExtUtils::MakeMaker;
e4e3b52c 5
1f993d62 6(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
e4e3b52c 7
1f993d62 8WriteMakefile(
9136e7f4 9 NAME => 'Web::Simple',
1f993d62 10 VERSION_FROM => 'lib/Web/Simple.pm',
f1de4ab8 11 PREREQ_PM => {
12 'Syntax::Keyword::Gather' => '1.001',
13 'Plack' => '0.9968',
14 'Moo' => '0.009014',
15 'warnings::illegalproto' => '0.001',
16 'Data::Dumper::Concise' => '2.020',
1f993d62 17 },
b13ce12e 18 MIN_PERL_VERSION => '5.006',
19
20 META_MERGE => {
21 'meta-spec' => { version => 2 },
22 dynamic_config => 0,
23 resources => {
24 # r/w: p5sagit@git.shadowcat.co.uk:Web-Simple.git
25 repository => {
26 url => 'git://git.shadowcat.co.uk/p5sagit/Web-Simple.git',
27 web => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Web-Simple.git',
28 type => 'git',
29 },
30 bugtracker => {
31 mailto => 'bug-Web-Simple@rt.cpan.org',
32 web => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Web-Simple',
33 },
34 },
35 },
36
f80844de 37 realclean => { FILES => [ 'Distar/', 'MANIFEST*' ] },
1f993d62 38);