The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl

use strict;
use warnings;
use 5.006;

use ExtUtils::MakeMaker;

WriteMakefile(
    AUTHOR              => 'Barbie <barbie@cpan.org>',
    NAME                => 'WWW::Scraper::ISBN::LOC_Driver',
    VERSION_FROM        => 'lib/WWW/Scraper/ISBN/LOC_Driver.pm',
    ABSTRACT            => q{Searches Library of Congress' online catalog for book information},
    NO_META             => 1,
    PREREQ_PM           => {

        # runtime prereqs
        'HTTP::Request::Common'         => '1.19',
        'LWP::UserAgent'                => '2.00',
        'WWW::Scraper::ISBN::Driver'    => '0.15',

        # build/test prereqs
        'IO::File'                      => '0',
        'Test::More'                    => '0.70'

    }
);