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

WriteMakefile(
    NAME => 'Coat',
    VERSION_FROM => 'lib/Coat.pm',
    ABSTRACT => 'Light meta class for writing Moose compatible code',
    PREREQ_PM => {
        'Scalar::Util' => 0,
        'Test::Exception' => 0,
    },
    test => {TESTS => join( ' ', glob( 't/*.t' )).' '.join(' ', glob('t/moose_tests/*.t'))},
);