diff options
author | Ivan Kohler <ivan@freeside.biz> | 2012-07-11 00:08:15 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2012-07-11 00:08:15 -0700 |
commit | 3c5cccf1bf74f2e60482fe62cfbcbe06722da1f5 (patch) | |
tree | d0bfc425deb44dbaa0cad9f272cd2023407ebd05 /Makefile.PL |
initial commit
Diffstat (limited to 'Makefile.PL')
-rw-r--r-- | Makefile.PL | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000..34dc397 --- /dev/null +++ b/Makefile.PL @@ -0,0 +1,26 @@ +use 5.006; +use strict; +use warnings; +use ExtUtils::MakeMaker; + +WriteMakefile( + NAME => 'Business::BatchPayment', + AUTHOR => q{Mark Wells <mark@freeside.biz>}, + VERSION_FROM => 'BatchPayment.pm', + ABSTRACT_FROM => 'BatchPayment.pm', + ($ExtUtils::MakeMaker::VERSION >= 6.3002 + ? ('LICENSE'=> 'perl') + : ()), + PL_FILES => {}, + PREREQ_PM => { + 'Moose' => 2.000, + 'MooseX::UndefTolerant' => 0, + 'DateTime' => 0, + 'File::Slurp' => 0, + 'Net::SFTP::Foreign' => 0, + 'Net::HTTPS::Any' => 0.10, + 'Test::More' => 0, + }, + dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, + clean => { FILES => 'Business-BatchPayment-*' }, +); |