get tests passing
[bioperl-network.git] / Build.PL
blobcde363ebca3d48bc1c4c758461c86a6f2d93d66b
1 #!/usr/bin/perl -w
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(
11 dist_name => 'BioPerl-Network',
12 dist_version => '1.006900',
13 dist_author => 'BioPerl Team <bioperl-l@bioperl.org>',
14 dist_abstract => 'BioPerl-Network - package for biological networks',
15 license => 'perl',
16 requires => {
17 'perl' => '5.6.1',
18 'Bio::Root::Version' => '1.006900',
19 'Graph' => 0.86
21 recommends => {
22 'XML::Twig' => 3.22 # parsing PSI XML/Bio::Graph::IO::psi
24 dynamic_config => 1,
25 create_makefile_pl => 'passthrough'
28 $build->create_build_script;
30 exit;