-
Notifications
You must be signed in to change notification settings - Fork 12
/
Makefile.PL
31 lines (30 loc) · 918 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
use 5.006;
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Net::OAuth2::Moosey::Client',
AUTHOR => q{Robin Clarke <[email protected]>},
VERSION_FROM => 'lib/Net/OAuth2/Moosey/Client.pm',
ABSTRACT_FROM => 'lib/Net/OAuth2/Moosey/Client.pm',
($ExtUtils::MakeMaker::VERSION >= 6.3002
? ('LICENSE'=> 'perl')
: ()),
PL_FILES => {},
PREREQ_PM => {
'HTTP::Message' => 0, # Includes HTTP::Request::..
'JSON' => 0,
'LWP::UserAgent' => 0,
'Moose' => 0,
'MooseX::Log::Log4perl' => 0,
'MooseX::Types::URI' => 0,
'Test::Mock::LWP::Dispatch' => 0,
'Test::More' => 0,
'Test::NoWarnings' => 0,
'URI' => 0,
'URI::Escape' => 0,
'YAML' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Net-OAuth2-*' },
);