forked from interchange/Amazon-MWS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
69 lines (64 loc) · 2.12 KB
/
Makefile.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
use strict;
use warnings FATAL => 'all';
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Amazon::MWS',
AUTHOR => [q{Paul Driver <[email protected]>},
q{Phil Smith <[email protected]>},
q{Marco Pessotto <[email protected]>},
q{Stefan Hornburg (Racke) <[email protected]>},
],
VERSION_FROM => 'lib/Amazon/MWS.pm',
ABSTRACT_FROM => 'lib/Amazon/MWS.pm',
LICENSE => 'perl',
PL_FILES => {},
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => 0,
},
BUILD_REQUIRES => {
'Test::Deep' => 0,
'Test::More' => 0,
'Test::MockObject' => 0,
'Test::MockObject::Extends' => 0,
'HTTP::Response' => 0,
'DBI' => 0,
'DBD::SQLite' => 0,
},
PREREQ_PM => {
'URI' => 0,
'URI::Escape' => 0,
'HTTP::Request' => 0,
'LWP::UserAgent' => 0,
'LWP::Protocol::https' => 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,
'namespace::clean' => 0,
'Moo' => 0,
'MooX::Types::MooseLike' => 0,
'DBI' => 0,
'DateTime' => 0,
'SQL::Abstract' => 0,
'Try::Tiny' => 0,
'Path::Tiny' => 0,
'XML::Compile::Schema' => 1.46,
'DateTime::Format::ISO8601' => 0,
'XML::LibXML::Simple' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Amazon-MWS-*' },
META_MERGE => {
resources => {
repository => 'https://github.com/interchange/Amazon-MWS',
bugtracker => 'https://github.com/interchange/Amazon-MWS/issues',
IRC => 'irc://irc.freenode.net/#interchange',
},
},
);