forked from pombase/pombase-chado
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Build.PL
40 lines (38 loc) · 1.23 KB
/
Build.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
use strict;
use warnings;
use Module::Build;
my $builder = Module::Build->new(
module_name => 'PomBase',
license => 'perl',
dist_author => q{Kim Rutherford <[email protected]>},
dist_version_from => 'lib/PomBase.pm',
requires => {
perl => '5.12.0',
'Bio::Chado::Schema' => 0,
'Bio::SeqIO' => 0,
'Carp::Assert' => 0,
'DBIx::Class' => 0,
'Digest::MD5' => 0,
'File::Temp' => 0,
'IO::Handle' => 0,
'JSON' => 0,
'List::Gen' => 0,
'Memoize' => 0,
'Method::Signatures' => 0,
'Module::Find' => 0,
'Moose' => 0,
'MooseX::Traits' => 0,
'Text::CSV' => 0,
'Tie::Hash::Indexed' => 0,
'YAML' => 0,
'YAML::Any' => 0,
'Clone' => 0,
'perl5i::2' => 0,
},
build_requires => {
'Test::More' => 0,
},
add_to_cleanup => [ 'PomBase-*' ],
create_makefile_pl => 'traditional',
);
$builder->create_build_script();