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

WriteMakefile(
    NAME                => 'WWW::DirectAdmin::API',
    AUTHOR              => q{Lee Carmichael <lcarmich@cpan.org>},
    VERSION_FROM        => 'lib/WWW/DirectAdmin/API.pm',
    ABSTRACT_FROM       => 'lib/WWW/DirectAdmin/API.pm',
    ($ExtUtils::MakeMaker::VERSION >= 6.3002
      ? ('LICENSE'=> 'perl')
      : ()),
    PL_FILES            => {},
    PREREQ_PM => {
        'Test::More'       => 0,
        'Data::Dumper'     => 0,
        'HTML::Entities'   => 0,
        'HTTP::Request'    => 0,
        'LWP::UserAgent'   => 0,
        'Params::Validate' => 0,
        'URI'              => 0
    },
    META_MERGE      => {
        resources => {
            license     => 'http://dev.perl.org/licenses/',
            bugtracker  => 'https://github.com/lecar-red/WWW-DirectAdmin-API/issues',
            repository  => 'https://github.com/lecar-red/WWW-DirectAdmin-API'
        },
    }, 
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'WWW-DirectAdmin-API-*' },
);