/usr/local/CPAN/Email-ConstantContact/Makefile.PL


use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME                => 'Email::ConstantContact',
    AUTHOR              => 'Adam Rich <arich@cpan.org>',
    VERSION_FROM        => 'lib/Email/ConstantContact.pm',
    ABSTRACT_FROM       => 'lib/Email/ConstantContact.pm',
    ($ExtUtils::MakeMaker::VERSION >= 6.3002
      ? ('LICENSE'=> 'perl')
      : ()),
    PL_FILES            => {},
	LICENSE				=> 'perl',
    PREREQ_PM => {
		'XML::Writer' => 0,
		'XML::Simple' => 0,
        'Test::More' => 0,
		'LWP::UserAgent' => 0,
		'Carp' => 0,
		'HTTP::Request' => 0,
		'POSIX' => 0,
		'URI::Escape' => 0,
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'Email-ConstantContact-*' },
);