summaryrefslogtreecommitdiff
path: root/Makefile.PL
blob: 6fa72eb1cf48e0adac7f46b8d5e9d5dea459c357 (plain)
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
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'    => 1.09,
        '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-*' },
);