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       => 'WWW::Google::CustomSearch',
    license           => 'perl',
    dist_author       => q{Mohammad S Anwar <mohammad.anwar@yahoo.com>},
    dist_version_from => 'lib/WWW/Google/CustomSearch.pm',
    add_to_cleanup    => [ 'WWW-Google-CustomSearch-*' ],
    build_requires    => {
        'Test::More'  => 0,
        'Readonly'    => '1.03',
        'Moose'       => '2.0006',
        'JSON'        => '2.15',
        'XML::Simple' => '2.18',
        'HTTP::Request'    => '1.40',
        'LWP::UserAgent'   => '2.33',
        'LWP::Protocol::https' => '6.04',
        'namespace::clean'     => '0.20',
        'MooseX::Params::Validate'     => '0.16',
        'Moose::Util::TypeConstraints' => '2.0006',
    },
);

$builder->create_build_script();