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 40 41 42 43 44 45 46 47 48 49
|
use strict;
use Module::Build;
my $build = Module::Build->new(
module_name => 'Module::CPANTS::Analyse',
license => 'perl',
requires => {
'Class::Accessor' => '0.19',
'Archive::Any' => '0.06',
'Archive::Tar' => '1.30',
'CPAN::DistnameInfo' => '0.06',
'Pod::Simple::Checker' => '2.02',
'YAML::Syck' => '0.95',
'Module::ExtractUse' => '0.18',
'Module::Pluggable' => '2.96',
'IO::Capture' => '0.05',
'Array::Diff' => '0.04',
'Test::YAML::Meta::Version' => '0.11',
'version' => '0.73',
'List::MoreUtils' => '0',
'File::Find::Rule' => '0',
'Readonly' => '0',
'Software::License' => '0.003',
'File::Slurp' => '0',
'Text::CSV_XS' => '0.45',
'LWP::Simple' => 0,
'perl' => 5.006,
},
build_requires => {
'Test::More' => '0',
'Test::Deep' => '0',
'Test::Warn' => '0.11', #less problems with new Sub::Uplevel
'Test::NoWarnings' => '0',
},
meta_merge => {
resources => {
repository => 'http://github.com/domm/CPANTS/tree',
},
keywords => [
'CPANTS','kwalitee',
],
},
script_files=>[qw(bin/cpants_lint.pl)],
create_makefile_pl=>'traditional',
);
$build->create_build_script;
|