version increase for final release, improved warning
[bioperl-network.git] / Build.PL
bloba4f441a2bb67b4c015f07d226ece6a99e0b6388e
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 # Uses a custom subclass of Module::Build called ModuleBuildBioperl that
7 # doesn't get installed
9 use strict;
10 use ModuleBuildBioperl;
12 # Set up the ModuleBuildBioperl object
13 my $build = ModuleBuildBioperl->new(
14 module_name => 'Bio',
15 dist_name => 'bioperl-network',
16 dist_version => 1.005002100,
17 dist_author => 'Bioperl Team <bioperl-l@bioperl.org>',
18 dist_abstract => 'bioperl-network - package for biological networks',
19 license => 'artistic',
20 requires => {
21 'perl' => '5.6.1',
22 'Bio::Root::Version' => '1.5.2',
23 'Graph' => 0.8
25 recommends => {
26 'XML::Twig' => '3.22/parsing PSI XML/Bio::Graph::IO::psi'
28 dynamic_config => 1
30 #pm_files => {} # modules in Bio are treated as if they were in lib and auto-installed
31 #script_files => [] # scripts in scripts directory are installed on-demand
34 # Create the build script and exit
35 $build->create_build_script;
37 exit;