-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile.PL
25 lines (24 loc) · 934 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
use ExtUtils::MakeMaker::CPANfile;
WriteMakefile(
'NAME' => 'Redis::OpenTracing',
'AUTHOR' => 'Theo van Hoesel <tvanhoesel@perceptyx.com',
'VERSION_FROM' => 'lib/Redis/OpenTracing.pm',
'ABSTRACT_FROM' => 'lib/Redis/OpenTracing.pod',
'LICENSE' => 'perl',
test => {
TESTS => 't/Redis/OpenTracing.t t/Redis/OpenTracing/*.t',
},
'META_MERGE' => {
"meta-spec" => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'https://github.com/Perceptyx/perl-redis-opentracing.git',
web => 'https://github.com/Perceptyx/perl-redis-opentracing',
},
bugtracker => {
web => 'https://github.com/Perceptyx/perl-redis-opentracing/issues',
},
},
},
);