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 }, 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', 'namespace::clean' => '0.20', 'MooseX::Params::Validate' => '0.16', 'Moose::Util::TypeConstraints' => '2.0006', }, ); $builder->create_build_script();