-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMakefile.PL
74 lines (69 loc) · 2.68 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
use strict;
use warnings;
use utf8;
use ExtUtils::MakeMaker;
use File::ShareDir::Install;
install_share dist => 'share';
my $GITHUB_URL = 'https://github.com/CNAG-Biomedical-Informatics/convert-pheno';
WriteMakefile(
NAME => 'Convert::Pheno',
ABSTRACT_FROM => 'lib/Convert/Pheno.pm',
AUTHOR => q{Manuel Rueda <[email protected]>},
LICENSE => 'perl',
VERSION_FROM => 'lib/Convert/Pheno.pm',
META_MERGE => {
'dynamic_config' => 0,
'meta-spec' => { version => 0 },
'no_index' => { directory => [qw(docs t)] },
'prereqs' => { runtime => { requires => { perl => '5.026000' } } },
'resources' => {
bugtracker => { web => "$GITHUB_URL/issues" },
homepage => $GITHUB_URL,
license =>
['http://www.opensource.org/licenses/artistic-license-2.0'],
repository =>
{ type => 'git', url => "$GITHUB_URL.git", web => $GITHUB_URL },
},
'x_contributors' => [],
},
PREREQ_PM => {
'JSON::XS' => '4.03',
'YAML::XS' => '0.88',
'Path::Tiny' => '0.144',
'Term::ANSIColor' => '5.01',
'Text::CSV_XS' => '1.50',
'Text::Similarity' => '0.13',
'Sort::Naturally' => '1.03',
'File::ShareDir::ProjectDistDir' => '1.000009',
'DBI' => '1.643',
'Moo' => '2.005005',
'DBD::SQLite' => '1.72',
'Mojolicious' => '9.33',
'XML::Fast' => '0.17',
'JSON::Validator' => '5.14',
'Types::Standard' => '2.004000',
#'Test::Deep' => '1.204',
#'Test::Exception' => '0.43',
#'Test::Warn' => '0.37',
'Data::Leaf::Walker' => '0.21',
'Hash::Fold' => '1.0.0',
'JSONLD' => '0.006',
'Devel::Size' => '0.84'
#'IO::Socket::SSL' => '2.083'
#'Mojolicious::Plugin::OpenAPI' => '5.09'
},
EXE_FILES => ['bin/convert-pheno'],
TEST_REQUIRES => {
'Test::More' => '1.30',
'Test::Deep' => '1.204',
'Test::Exception' => '0.43',
'Test::Warn' => '0.37'
},
test => { TESTS => 't/*.t' },
CONFIGURE_REQUIRES => {
'File::ShareDir::Install' => '0.14',
'ExtUtils::MakeMaker' => '7.70',
}
);
package MY;
use File::ShareDir::Install 'postamble';