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 strict;
use warnings;
use Module::Build;

my $builder = Module::Build->new(
	module_name         => 'Scalar::Andand',
	license             => 'perl',
	dist_author         => 'Leon Timmermans <leont@cpan.org>',
	dist_version_from   => 'lib/Scalar/Andand.pm',
	build_requires => {
		'Test::More'      => 0,
		'Test::Exception' => 0,
		'Test::Warn'      => 0,
	},
	requires => {
		'perl'          => 5.008,
		'autobox::Core' => 0,
		'Class::Null'   => 0,
	},
	add_to_cleanup      => [ 'Scalar-Andand-*' ],
	create_makefile_pl  => 'traditional',
	no_index            => {
		'package'       => [ 'Scalar::Andand::Undef', 'Scalar::Andand::Scalar' ],
	},
	dynamic_config      => 0,
	sign                => 1,
);

$builder->create_build_script();