The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#!/usr/bin/perl

use strict;
use warnings;
use Module::Build::PM_Filter;

my $builder = Module::Build::PM_Filter->new(
    module_name         => 'MyModule',
    license             => 'gpl',
    dist_author         => 'VĂ­ctor Moral <victor@taquiones.net>',
    dist_abstract       => 'This is just a sample distribution',
    dist_version_from   => 'lib/MyModule.pm',
    requires => {
        'Test::More'                =>  0,
        'Module::Build::PM_Filter'  =>  0,
    },
    add_to_cleanup      => [ 'MyModule-*' ],
);

$builder->create_build_script();