-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile.PL
32 lines (29 loc) · 874 Bytes
/
Makefile.PL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#
# Makefile.PL
#
# Copyright (C) 1999-2012 Gregor N. Purdy, Sr. All rights reserved.
# This program is free software. It is subject to the same license as Perl.
#
# [ $Id$ ]
#
use ExtUtils::MakeMaker;
WriteMakefile (
NAME => 'Scrape::USPS::ZipLookup',
VERSION_FROM => 'lib/Scrape/USPS/ZipLookup.pm',
PREREQ_PM => {
LWP::UserAgent => 6.04,
LWP::Protocol::https => 6.03, # To use HTTPS during unit tests
HTTP::Request::Common => 6.03,
HTML::TreeBuilder::XPath => 0.14, # To scrape data out of HTML
XML::XPathEngine => 0.13,
},
EXE_FILES => [
'script/stdaddr'
],
AUTHOR => 'Gregor N. Purdy, Sr. (gnp@acm.org)',
ABSTRACT => 'Programmatic interaction with the USPS Zip Code Lookup web application',
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz' }
);
#
# End of file.
#