forked from lopnor/Net-Google-DataAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
34 lines (30 loc) · 790 Bytes
/
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
use inc::Module::Install;
name 'Net-Google-DataAPI';
all_from 'lib/Net/Google/DataAPI.pm';
requires 'Carp';
requires 'XML::Atom';
requires 'Net::Google::AuthSub' => '0.5';
requires 'Digest::SHA1';
requires 'Net::OAuth';
requires 'Net::OAuth2' => '0.07';
requires 'LWP::UserAgent';
requires 'LWP::Protocol::https';
requires 'URI';
requires 'Lingua::EN::Inflect::Number';
requires 'Text::Glob';
requires_any_moose(
prefer => 'Mouse',
moose => '0.56',
mouse => '0.51',
);
tests_recursive;
author_tests 'xt';
build_requires 'Test::More' => '0.88';
build_requires 'Test::Warn';
build_requires 'UNIVERSAL::isa';
build_requires 'UNIVERSAL::can';
build_requires 'Test::MockObject';
build_requires 'Test::MockModule';
build_requires 'Test::Exception';
auto_set_repository;
WriteAll;