forked from EnsemblGenomes/plantsTrackHubPipeline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
24 lines (23 loc) · 828 Bytes
/
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
use 5.10.0;
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
NAME => 'Bio::EnsEMBL::TrackHub',
VERSION_FROM => 'lib/Bio/EnsEMBL/TrackHub.pm',
PREREQ_PM => {
'HTTP::Request::Common' => '0',
'JSON' => '0',
'Log::Log4perl' => '0',
'LWP::UserAgent' => '0',
'Moose' => '0',
'namespace::autoclean' => '0',
'Perl6::Slurp' => '0',
'Readonly' => '0',
'Test::Exception' => '0',
'Test::File' => '0',
},
#ABSTRACT_FROM => 'lib/Bio/EnsEMBL/TrackHub.pm',
AUTHOR => 'mbarba <mbarba@ebi.ac.uk>',
LICENSE => 'apache',
);