The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
use 5.010;
use strict;
use warnings FATAL => 'all';
use Module::Build;

my $builder = Module::Build->new(
    module_name         => 'Run::Parts',
    license             => 'Perl_5',
    dist_author         => q{Axel Beckert <abe@deuxchevaux.org>},
    dist_version_from   => 'lib/Run/Parts.pm',
    release_status      => 'stable',
    configure_requires => {
        'Module::Build' => '0.37',
    },
    build_requires => {
        'Test::More' => 0,
        'Test::Differences' => 0,
    },
    requires => {
        perl => '5.10.0',
        #'ABC'              => 1.6,
        #'Foo::Bar::Module' => 5.0401,
    },
    add_to_cleanup     => [ 'Run-Parts-*', 'Makefile.PL' ],
);

$builder->create_build_script();