-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathMakefile.PL
36 lines (35 loc) · 1.31 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
#!perl
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Net::Amazon::S3',
VERSION_FROM => 'lib/Net/Amazon/S3.pm',
AUTHOR => 'Leon Brocard <acme@astray.com>',
ABSTRACT => 'Use the Amazon S3 - Simple Storage Service',
LICENSE => 'perl',
PREREQ_PM => {
'Class::MOP' => '0.88',
'Class::Accessor::Fast' => '0',
'Data::Stream::Bulk' => '0.06',
'DateTime::Format::HTTP' => '0',
'DateTime::Format::ISO8601' => '0',
'Digest::HMAC_SHA1' => '0',
'Digest::MD5' => '0',
'Digest::MD5::File' => '0',
'File::stat' => '0',
'HTTP::Date' => '0',
'HTTP::Status' => '0',
'IO::File' => '1.14',
'LWP::UserAgent::Determined' => '0',
'MIME::Base64' => '0',
'Moose' => '0.85',
'MooseX::StrictConstructor' => '0.08',
'MooseX::Types::DateTimeX' => '0',
'Test::More' => '0.01',
'Regexp::Common' => '0',
'XML::LibXML' => '0',
'XML::LibXML::XPathContext' => '0',
'URI::Escape' => '0',
}
);