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

use ExtUtils::MakeMaker;

WriteMakefile(
    NAME         => 'Acme::Replica',
    VERSION_FROM => 'lib/Acme/Replica.pm',
    AUTHOR       => 'Kei Shimada <sasakure_kei@cpan.org>',
    PREREQ_PM    => {
        'Test::More' => 0,
        'Test::Warn' => 0,
    },
    test => {TESTS => 't/*.t'}
);