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                => 'Net::Plurk',
    AUTHOR              => 'Cheng-Lung Sung <clsung@cpan.org>',
    VERSION_FROM        => 'lib/Net/Plurk.pm',
    ABSTRACT_FROM       => 'lib/Net/Plurk.pm',
    ($ExtUtils::MakeMaker::VERSION >= 6.3002
      ? ('LICENSE'=> 'perl')
      : ()),
    PL_FILES            => {},
    MIN_PERL_VERSION => 5.010001,
    PREREQ_PM => {
        'Test::More' => 0,
        'AnyEvent::HTTP' => 0,
        'namespace::autoclean' => 0,
        'JSON::Any' => 0,
        'DateTime::Format::Strptime' => 0,
        'URI' => 0,
        'Moose' => 0
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'Net-Plurk-*' },
);