The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use utf8;
use strict;
use Module::Build;

my $build = Module::Build->new(
    dist_author => 'Lars Dɪᴇᴄᴋᴏᴡ <daxim@cpan.org>',
    module_name => 'Module::CPANTS::Analyse',
    license     => 'perl',
    requires    => {
        'Class::Accessor'           => '0.19',
        'Archive::Any::Lite'        => '0.06',
        'Archive::Tar'              => '1.48', #depends on IO::Compress without memory leak
        'CPAN::DistnameInfo'        => '0.06',
        'CPAN::Meta::YAML'          => '0.008',
        'CPAN::Meta::Validator'     => '2.131490',
        'YAML::Any'                 => 0,
        'Module::ExtractUse'        => '0.30', # for used_in_eval
        'Module::Pluggable'         => '2.96',
        'IO::Capture'               => '0.05',
        'Array::Diff'               => '0.04',
        'version'                   => '0.73',
        'File::Find::Rule::VCS'     => '0',
        'Software::License'         => '0.003',
        'perl'                      => 5.006,
        'Set::Scalar'               => 0,
        'Text::Balanced'            => 0,
    },
    build_requires => {
        'Test::More'                => '0',
        'Test::Deep'                => '0',
        'Test::Warn'                => '0.11', #less problems with new Sub::Uplevel
        'Test::NoWarnings'          => '0',
        'Cwd'                       => '0',
    },
    configure_requires => {
        'Module::Build'             => '0.4',
    },
    meta_merge => {
        resources => {
            homepage => 'http://cpants.cpanauthors.org',
            repository => 'https://github.com/cpants/Module-CPANTS-Analyse',
            bugtracker => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Module-CPANTS-Analyse',
            },
        keywords => [
            'CPANTS','kwalitee',
        ],
    },
    script_files=>[qw(bin/cpants_lint.pl)],
    create_makefile_pl=>'traditional',
);


$build->add_to_cleanup('Debian_CPANTS.txt');
$build->create_build_script;