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 Module::Build;
use version;
$build = Module::Build->new(
    dist_author        => 'Martin Kutter <martin.kutter@fen-net.de>',
    create_makefile_pl => 'small',
    dist_abstract      => 'TCP transport layer for SOAP::Lite',
    dist_name          => 'SOAP-Transport-TCP',
    module_name        => 'SOAP::Transport::TCP',
    license            => 'artistic',
    requires           => {
        'perl'         => q(5.6.2),
        'SOAP::Lite'   => 0.714,
        'Net::FTP'     => 0,
        'IO::File'     => 0,
    },
    build_requires => {
        'Test::More'              => 0,
    },
    recursive_test_files => 1,
    meta_add => {
    }
);
$build->create_build_script;