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

WriteMakefile(
		NAME => 'Test::Subs',
		AUTHOR => 'Mathias Kende <mathias@cpan.org>',
		VERSION_FROM => 'lib/Test/Subs.pm',
		ABSTRACT_FROM => 'lib/Test/Subs.pm',
		#README_FROM => 'lib/Test/Subs.pm',
		LICENSE => 'perl',
		MIN_PERL_VERSION => '5.10.1',
		CONFIGURE_REQUIRES => {
				'ExtUtils::MakeMaker' => 6.3002,
			},
		BUILD_REQUIRES => {},
		PREREQ_PM => {
				'Exporter' => 0,
				'Filter::Simple' => 0,
				'Carp' => 0,
				'Pod::Checker' => 0,
				'List::MoreUtils' => 0,
    		},
	);