forked from ukautz/Net-Amazon-DynamoDB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
37 lines (35 loc) · 1.02 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
#!/usr/bin/env perl
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Net::Amazon::DynamoDB',
VERSION_FROM => 'lib/Net/Amazon/DynamoDB.pm',
ABSTRACT => 'Simple interface for Amazon DynamoDB',
AUTHOR => 'Ulrich Kautz <[email protected]>',
MIN_PERL_VERSION => '5.10.0',
BUILD_REQUIRES => {
'Test::More' => 0,
'Cache' => 0,
'Cache::Memory' => 0,
},
PREREQ_PM => {
'DateTime' => 0,
'DateTime::Format::HTTP' => 0,
'DateTime::Format::Strptime' => 0,
'DateTime::TimeZone' => 0,
'DateTime::TimeZone::Local' => 0,
'Digest::SHA' => 0,
'HTTP::Request' => 0,
'JSON' => 0,
'LWP::Protocol::https' => 0,
'LWP::UserAgent' => 0,
'LWP::ConnCache' => 0,
'Moose' => 1.0,
'Net::Amazon::AWSSign' => 0,
'Time::HiRes' => 0,
'XML::Simple' => 0,
'MIME::Base64' => 0,
},
test => {TESTS => 't/*.t t/*/*.t'}
);