re-specify minimum perl version, add some metadata
[catagits/Web-Simple.git] / Makefile.PL
1 use strict;
2 use warnings FATAL => 'all';
3 use 5.008001;
4 use ExtUtils::MakeMaker;
5
6 (do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
7
8 WriteMakefile(
9   NAME => 'Web::Simple',
10   VERSION_FROM => 'lib/Web/Simple.pm',
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',
17   },
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
37   realclean => { FILES => [ 'Distar/', 'MANIFEST*' ] },
38 );