Move text from Wiki to README
[bioperl-network.git] / Build.PL
blobb6dba20f80daa428a95b2040b7004d5c1905113e
1 #!/usr/bin/perl
3 # This is a Module::Build script for BioPerl-Network installation.
4 # See http://search.cpan.org/~kwilliams/Module-Build/lib/Module/Build.pm
6 use strict;
7 use warnings;
8 use Module::Build;
10 my $build = Module::Build->new(
12 dist_name => 'BioPerl-Network',
13 dist_version => '1.006902',
14 module_name => 'Bio::Network',
15 dist_author => 'BioPerl Team <bioperl-l@bioperl.org>',
16 dist_abstract => 'BioPerl-Network - package for biological networks',
17 license => 'perl',
18 requires => {
19 'perl' => '5.6.1',
20 'Bio::Root::Version' => '1.006901',
21 'Graph' => 0.86
23 recommends => {
24 'XML::Twig' => 3.22 # parsing PSI XML/Bio::Graph::IO::psi
26 build_requires => {
27 'Test::More' => '0',
28 'Test::Warn' => '0',
29 'Test::Exception' => '0'
31 #dynamic_config => 1,
32 #create_makefile_pl => 'passthrough'
35 $build->create_build_script;
37 exit;