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

my $build = Module::Build->new(
    create_makefile_pl => 'traditional',
    license            => 'perl',
    module_name        => 'Net::Amazon::AWIS',
    requires           => {
        'Class::Accessor::Fast'      => '0',
        'DateTime::Format::Strptime' => '0',
        'Digest::HMAC_SHA1'          => '0',
        'IO::Prompt'                 => '0',
        'LWP::UserAgent'             => '0',
        'Module::Build'              => '0',
        'Test::Exception'            => '0.15',
        'Test::More'                 => '0.01',
        'XML::LibXML'                => '0',
        'XML::LibXML::XPathContext'  => '0',
    },
);
$build->create_build_script;