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::Wheelers_Driver',
    VERSION_FROM        => 'lib/WWW/Scraper/ISBN/Wheelers_Driver.pm',
    ABSTRACT            => q|Search driver for the Wheelers' online book catalog|,
    NO_META             => 1,
    PREREQ_PM           => {

        # prereqs
        'WWW::Scraper::ISBN'            => '0.25',
        'WWW::Scraper::ISBN::Driver'    => '0.18',
        'WWW::Mechanize'                => '1.60',

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

    }
);