allow Moo < 1.0
[Geo-USCensus-Geocoding.git] / Makefile.PL
1 use 5.006;
2 use strict;
3 use warnings;
4 use ExtUtils::MakeMaker;
5
6 WriteMakefile(
7     NAME                => 'Geo::USCensus::Geocoding',
8     AUTHOR              => q{Mark Wells <mark@freeside.biz>},
9     VERSION_FROM        => 'Geocoding.pm',
10     ABSTRACT_FROM       => 'Geocoding.pm',
11     ($ExtUtils::MakeMaker::VERSION >= 6.3002
12       ? ('LICENSE'=> 'perl')
13       : ()),
14     PL_FILES            => {},
15     PREREQ_PM => {
16         'Test::More'     => 0,
17         'LWP::UserAgent' => 0,
18         'Text::CSV'      => 0,
19         'Moo'            => 0,
20     },
21     dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
22     clean               => { FILES => 'Geo-USCensus-Geocoding-*' },
23 );