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;

# print "==>  These tests generate email output                            <==\n";
# print "==>  Where would you like your test results sent?                 <==\n";
# print "==>  By default test email summaries go to dev-null\@example.com  <==\n";
# print "==>  By default test sms summaries go to dev-null\@example.com    <==\n";

# my $answer = prompt('Send test email summaries to?','devnull@example.com');
# my $answer = prompt('Send test sms summaries to?','devnull@example.com');

WriteMakefile(
    NAME                => 'Test::MonitorSites',
    AUTHOR              => 'Hugh Esco <hesco@greens.org>',
    VERSION_FROM        => 'lib/Test/MonitorSites.pm',
    ABSTRACT_FROM       => 'lib/Test/MonitorSites.pm',
    PL_FILES            => {},
    PREREQ_PM => {
        'Cwd'                   => 0,
        'Carp'                  => 0,
        'Data::Dumper'          => 0,
        'Test::More'            => 0,
        'Test::Pod'             => 1.14,
        'Test::Pod::Coverage'   => 1.04,
        'Test::Builder'         => 0,
        'Mail::Mailer'          => 0,
        'Config::Simple'        => 0,
        'WWW::Mechanize'        => 0,
        'Test::WWW::Mechanize'  => 0,
        'Test::HTML::Tidy'      => 0,
        'HTTP::Request::Common' => 0,
        'Test::Builder::Tester' => 0,
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'Test-MonitorSites-*' },
);