1
2
3use ExtUtils::MakeMaker;
4# See lib/ExtUtils/MakeMaker.pm for details of how to influence
5# the contents of the Makefile that is written.
6WriteMakefile(
7    NAME         => 'Business::EDI',
8    VERSION_FROM => 'lib/Business/EDI.pm', # finds \$VERSION
9    AUTHOR       => 'Joe Atzberger (atz@esilibrary.com)',
10    ABSTRACT     => 'Top level generator of U.N. EDI objects',
11    PREREQ_PM    => {
12                     'CGI' => 3.1,
13                     'Test::More' => 0.94,
14                     'Test::Simple' => 0.88,
15                     'Exporter::Easy' => 0.14,
16                     'List::MoreUtils' => 0.22,
17                     'File::Find::Rule' => 0.32,
18                     'UNIVERSAL::require' => 0.10,
19                     'JSON::XS' => 2.01,
20                    },
21);
22