-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
37 lines (35 loc) · 1.24 KB
/
Makefile.PL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
use 5.006;
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Iss::Ah::Predictor',
VERSION_FROM => 'lib/ISS/AH/Predictor.pm',
ABSTRACT => 'ISS AH Predictor',
AUTHOR => 'Christoph Beger <[email protected]>',
LICENSE => 'MIT',
META_MERGE => {
dynamic_config => 0,
'meta-spec' => { version => 2 },
no_index => { directory => [qw(t)], },
prereqs => { runtime => { requires => { perl => '5.006' } } },
resources => {
bugtracker => { web => 'https://github.com/CrescNet/iss-ah-predictor/issues' },
license => ['https://opensource.org/licenses/MIT'],
repository => {
type => 'git',
url => 'https://github.com/CrescNet/iss-ah-predictor.git',
web => 'https://github.com/CrescNet/iss-ah-predictor',
},
},
},
CONFIGURE_REQUIRES => { 'ExtUtils::MakeMaker' => '7.24' },
TEST_REQUIRES => {
'Test::More' => '1.3',
'Test::PerlTidy' => '20200411',
},
PREREQ_PM => { 'Scalar::Util' => '1.4602' },
test => { TESTS => 't/*.t t/*/*.t' },
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Iss-Ah-Predictor-*' },
);