The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use ExtUtils::MakeMaker 6.46;

require 5.008;

eval "use Test::Manifest 1.21";

WriteMakefile(
	'NAME'	        => '[% module %]',
	'ABSTRACT_FROM' => 'lib/[% module_path %]',
	'VERSION_FROM'  => 'lib/[% module_path %]',
	'LICENSE'       => 'perl',
	'AUTHOR'        => 'brian d foy <bdfoy@cpan.org>',
	
	'PREREQ_PM'    => { 
		'Test::More' => '0.95',
		},

	clean  => { FILES    => q|[% module_dist %]-*| },
	);