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

WriteMakefile(
    'NAME'          => 'Net::WhitePages',
    'VERSION_FROM'  => 'lib/Net/WhitePages.pm',
    'PREREQ_PM'     => {
        'LWP::Simple'       => '0.00',
        'Params::Validate'  => '0.00',
        'URI'               => '0.00',

    },
    'EXE_FILES'     => [ qw(wpfind) ],
    'AUTHOR'        => 'darren chamberlain <darren@cpan.org>',
    'ABSTRACT_FROM' => 'lib/Net/WhitePages.pm',
    'clean'         => {
        'FILES' => '$(DISTVNAME).tar$(SUFFIX) *.ppd'
    },
    'dist'          => {
        PREOP => 'perldoc -t lib/Net/WhitePages.pm > README',
    }
);