-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
33 lines (31 loc) · 956 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
#!/usr/bin/env perl
use strict;
use warnings;
use lib 'lib';
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'ImgurAPI::Client',
AUTHOR => 'Dillan Hildebrand',
VERSION_FROM => 'lib/ImgurAPI/Client.pm',
LICENSE => 'MIT',
PREREQ_PM => {
'JSON' => '2.90',
'LWP::UserAgent' => '6.05',
'HTTP::Request::Common' => '6.07',
'Data::Dumper' => '2.154',
'Scalar::Util' => '1.42',
'Mozilla::CA' => '20240313',
'Test::Exception' => '0.43',
'Test::More' => '1.302162',
'XML::LibXML' => '2.0110',
},
META_MERGE => {
resources => {
repository => {
type => 'git',
url => 'https://github.com/selftaught/ImgurAPI.git',
web => 'https://github.com/selftaught/ImgurAPI',
}
},
}
);