-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBuild.PL
39 lines (36 loc) · 1.03 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
#!/usr/bin/perl
use strict;
use warnings;
use Module::Build;
my $build = Module::Build->new(
dist_name => 'UMIScripts',
module_name => 'UMIScripts',
dist_version_from => 'lib/Bio/UMIScripts.pm',
dist_abstract => 'Scripts for handling Unique Molecular Indexes in Fastq and Bam files',
dist_author => 'Timothy Parnell <[email protected]>',
license => 'artistic_2',
meta_merge => {
resources => {
repository => 'https://github.com/HuntsmanCancerInstitute/UMIScripts'
}
},
configure_requires => {
'Module::Build' => 0,
},
requires => {
'List::Util' => 0,
'String::Approx' => 0,
'Text::Levenshtein::Flexible' => 0,
},
test_requires => {
'Test::More' => 0,
'Test::Script' => 0
},
recommends => {
'Bio::DB::HTS' => 0,
'Parallel::ForkManager' => 0,
'List::MoreUtils' => 0,
},
);
$build->create_build_script;
exit 0;