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',
    VERSION_FROM        => 'lib/WWW/Scraper/ISBN.pm',
    ABSTRACT            => 'Retrieve information about books from online sources',
    NO_META             => 1,
    PREREQ_PM           => {

        # runtime prereqs
        'Carp'                          => '1.00',
        'Module::Pluggable'             => '0',

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

    }
);