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

my $builder = Module::Build->new(
    sign              => 1,
    module_name       => 'IP::Info',
    license           => 'perl',
    dist_author       => q{Mohammad S Anwar <mohammad.anwar@yahoo.com>},
    dist_version_from => 'lib/IP/Info.pm',
    add_to_cleanup    => [ 'IP-Info-*' ],
    build_requires    => {
        'Test::More'  => 0,
        'XML::Simple' => '2.14',
        'Readonly'    => '1.03',
        'Mouse'       => '0.93',
        'Digest::MD5' => '2.36',
        'HTTP::Request'      => '1.40',
        'HTTP::Exception'    => '0.04004',
        'Exception::Class'   => '1.36',
        'LWP::UserAgent'     => '2.33',
        'Data::Validate::IP' => '0.10',
    },
);

$builder->create_build_script();