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.010001;
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    NAME              => 'Mustache::Simple',
    AUTHOR	      => q{Cliff Stanford <cpan@may.be>},
    VERSION_FROM      => 'lib/Mustache/Simple.pm',
    ABSTRACT_FROM     => 'lib/Mustache/Simple.pm',
    PL_FILES         => {},
    MIN_PERL_VERSION => 5.10.0,
    CONFIGURE_REQUIRES => {
        'ExtUtils::MakeMaker' => 0,
    },
    BUILD_REQUIRES => {
        'Test::More' => 0,
    },
    PREREQ_PM         => {
	'File::Spec' => 0,
    },
);