-
Notifications
You must be signed in to change notification settings - Fork 10
/
Build.PL
39 lines (31 loc) · 1.03 KB
/
Build.PL
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
27
28
29
30
31
32
33
34
35
36
37
38
use Module::Build;
my $build = Module::Build->new(
dist_name => 'Amazon-MWS',
dist_version_from => 'lib/Amazon/MWS/Client.pm',
dist_author => 'Paul Driver <[email protected]>',
license => 'perl',
dist_abstract => 'Perl interface to Amazon Marketplace Web Services',
build_requires => {
'Test::More' => 0,
'Test::MockObject' => 0,
'Test::MockObject::Extends' => 0,
'HTTP::Response' => 0,
},
requires => {
'URI' => 0,
'URI::Escape' => 0,
'HTTP::Request' => 0,
'LWP::UserAgent' => 0,
'XML::Simple' => 0,
'DateTime' => 0,
'DateTime::Format::ISO8601' => 0,
'Readonly' => 0,
'Class::InsideOut' => 0,
'Exception::Class' => 0,
'Exporter' => 0,
'MIME::Base64' => 0,
'Digest::MD5' => 0,
'Digest::HMAC_SHA1' => 0,
},
);
$build->create_build_script();