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 ExtUtils::MakeMaker;

eval "use Test::Tester";

WriteMakefile(
	NAME          => 'Test::Output',
	AUTHOR        => 'brian d foy <bdfoy@cpan.org>',
	VERSION_FROM  => 'lib/Test/Output.pm',
	LICENSE       => 'perl',
	ABSTRACT_FROM => 'lib/Test/Output.pm',
	PL_FILES      => {},
	PREREQ_PM     => {
		'Test::Tester'	=> '0.107',
		'Test::More'	=> '0',
		'Sub::Exporter'	=> '0',
		'File::Temp'	=> '0.17',
		},

	dist  => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
	clean => { FILES    => 'Test-Output-*' },
);