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

my $build = Module::Build->new(
    create_makefile_pl => 'traditional',
    license            => 'perl',
    module_name        => 'Catalyst::Plugin::Authorization::ACL',
    requires           => {
        'Catalyst' => '5.49',

        'Class::Data::Inheritable' => 0,

        'Class::Throwable'                         => 0,
        'Tree::Simple::Visitor::FindByPath'        => 0,
        'Tree::Simple::Visitor::GetAllDescendents' => 0,
    },
    create_readme => 1,
#    sign          => 1,
);
$build->create_build_script;