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       => 'CPAN::Search::Author',
    license           => 'perl',
    dist_author       => q{Mohammad S Anwar <mohammad.anwar@yahoo.com>},
    dist_version_from => 'lib/CPAN/Search/Author.pm',
    add_to_cleanup    => [ 'CPAN-Search-Author-*' ],
    build_requires    => {
        'Test::More'     => 0,
        'HTTP::Request'  => '1.40',
        'LWP::UserAgent' => '2.33',
        'HTML::Entities' => '1.35',
    },
);

$builder->create_build_script();