As stable as I can make it without a real test environment, needs documentation
[Business-BatchPayment-BillBuddy.git] / Makefile.PL
1 #!/usr/bin/perl
2
3 use 5.006;
4 use strict;
5 use warnings;
6 use ExtUtils::MakeMaker;
7
8 WriteMakefile(
9     NAME            => 'Business::BatchPayment::BillBuddy',
10     AUTHOR          => q{Jonathan Prykop <jonathan@freeside.biz>},
11     VERSION_FROM    => 'BillBuddy.pm',
12     PREREQ_PM       => {
13                 'Moose' => 1.09,
14                 'Business::BatchPayment' => 0.02,
15                 'XML::Simple' => 0,
16                 'XML::Writer' => 0,
17         },
18 );
19