-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBuild.PL
More file actions
122 lines (111 loc) · 3.21 KB
/
Build.PL
File metadata and controls
122 lines (111 loc) · 3.21 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
# This file was automatically generated by Dist::Zilla::Plugin::ModuleBuild v6.025.
use strict;
use warnings;
use Module::Build 0.3601;
my %module_build_args = (
"build_requires" => {
"Module::Build" => "0.3601"
},
"configure_requires" => {
"Date::Manip" => "6.36",
"Module::Build" => "0.3601"
},
"dist_abstract" => "Command line apps for Chado relational database",
"dist_author" => [
"Siddhartha Basu <biosidd\@gmail.com>"
],
"dist_name" => "Modware-Loader",
"dist_version" => "v1.10.5",
"license" => "perl",
"module_name" => "Modware::Loader",
"recommends" => {
"Child" => "0.009",
"DBD::Oracle" => "1.52",
"DBD::Pg" => "v2.19.3",
"Math::Base36" => "0.10"
},
"recursive_test_files" => 1,
"requires" => {
"Archive::Tar" => "1.92",
"BibTeX::Parser" => "0.65",
"Bio::Chado::Schema" => "0.20000",
"Bio::GFF3::LowLevel" => "1.5",
"Data::Dump" => "1.22",
"DateTime::Format::Strptime" => "1.56",
"Email::Abstract" => "3.006",
"Email::Address" => "1.900",
"Email::Sender::Simple" => "0.102370",
"Email::Simple" => "2.10",
"Email::Valid" => "0.184",
"File::Find::Rule" => "0.32",
"HTML::WikiConverter" => "0.68",
"HTML::WikiConverter::MediaWiki" => "0.59",
"LWP::Protocol::https" => "6.07",
"List::Util" => "1.45",
"Log::Log4perl" => "1.40",
"MooseX::App::Cmd" => "0.09",
"MooseX::Attribute::Dependent" => "v1.1.2",
"MooseX::ConfigFromFile" => "0.10",
"MooseX::Event" => "v0.2.0",
"MooseX::Getopt" => "0.70",
"MooseX::Object::Pluggable" => "0.0013",
"MooseX::Types::Path::Class" => "0.06",
"Number::Compare" => "0.03",
"OBO::Core::Ontology" => "1.40",
"Regexp::Common" => "2013030901",
"SQL::Library" => "v0.0.5",
"Spreadsheet::WriteExcel" => "2.37",
"Sub::Uplevel" => "0.24",
"Text::CSV" => "1.32",
"Text::TabularDisplay" => "1.33",
"Tie::Cache" => "0.17",
"XML::LibXML" => "1.70",
"XML::LibXSLT" => "1.81",
"XML::Simple" => "2.18",
"XML::Twig" => "3.44",
"perl" => "5.010"
},
"script_files" => [
"bin/chado2dicty_gff3_parallel.sh",
"bin/discoideum-split-canonical.pl",
"bin/discoideum_tblastn_filter.pl",
"bin/modware",
"bin/modware-dump",
"bin/modware-export",
"bin/modware-import",
"bin/modware-load",
"bin/modware-transform",
"bin/modware-update"
],
"share_dir" => {
"dist" => "share",
"module" => {
"Modware::Loader" => "share"
}
},
"test_requires" => {
"MooX::Types::MooseLike" => "0.25",
"Test::Chado" => "v4.1.1",
"Test::File" => "1.34",
"Test::Moose::More" => "0.0019",
"Test::More" => "0.88",
"Test::Roo" => "1.002",
"Test::Spec" => "0.46"
}
);
my %fallback_build_requires = (
"Module::Build" => "0.3601",
"MooX::Types::MooseLike" => "0.25",
"Test::Chado" => "v4.1.1",
"Test::File" => "1.34",
"Test::Moose::More" => "0.0019",
"Test::More" => "0.88",
"Test::Roo" => "1.002",
"Test::Spec" => "0.46"
);
unless ( eval { Module::Build->VERSION(0.4004) } ) {
delete $module_build_args{test_requires};
$module_build_args{build_requires} = \%fallback_build_requires;
}
my $build = Module::Build->new(%module_build_args);
$build->create_build_script;