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

my $builder = Module::Build->new(
    module_name => 'WWW::Snooze',
    license => 'mit',
    dist_author => q{Anthony Johnson <aj@ohess.org>},
    dist_version_from => 'lib/WWW/Snooze.pm',
    build_requires => {
        'Test::More' => 0,
        'Test::Exception' => 0
    },
    requires => {
        'perl' => 5.008,
        'URI' => 0,
        'LWP::UserAgent' => 0,
        'JSON' => 0,
        'HTTP::Request' => 0,
        'LWP::Protocol::https' => 0
    },
    add_to_cleanup => [ 'WWW-Snooze-*' ],
    create_makefile_pl => 'traditional',
    meta_merge => {
        resources => {
            homepage => 'http://ohess.org/projects/snooze-pl',
            bugtracker => 'http://github.com/agjohnson/snooze-pl/issues',
            repository => 'http://github.com/agjohnson/snooze-pl.git',
        }
    },
);

$builder->create_build_script();