forked from fayland/perl-net-github
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.PL
More file actions
28 lines (21 loc) · 656 Bytes
/
Makefile.PL
File metadata and controls
28 lines (21 loc) · 656 Bytes
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
use inc::Module::Install;
name 'Net-GitHub';
all_from 'lib/Net/GitHub.pm';
author 'Fayland Lam <fayland@gmail.com>';
license 'perl';
repository 'http://github.com/fayland/perl-net-github/tree/master';
requires 'MIME::Base64';
requires 'URI::Escape';
requires 'Any::Moose';
requires 'Crypt::SSLeay';
requires 'WWW::Mechanize::GZip';
requires 'JSON::Any';
requires 'JSON::XS'; # avoid "Couldn't find a JSON package. Need XS, JSON, or DWIW"
requires 'HTML::TreeBuilder';
requires 'HTTP::Request::Common';
build_requires 'Test::More';
test_requires 'Test::MockModule';
test_requires 'File::Slurp';
tests('t/*.t t/*/*.t');
auto_install;
WriteAll;