-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMakefile.PL
44 lines (35 loc) · 947 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
35
36
37
38
39
40
41
42
43
use strict;
use warnings;
use inc::Module::Install;
use Module::Install::Authority;
all_from 'lib/Message/Passing/AMQP.pm';
authority('cpan:GHENRY');
resources(
repository => "git://github.com/suretec/Message-Passing-AMQP.git",
);
license 'LGPL_2_1';
requires 'Moo' => 2.004004;
requires 'namespace::autoclean';
requires 'AnyEvent';
requires 'AnyEvent::RabbitMQ' => '1.15';
requires 'JSON';
requires 'JSON::XS';
requires 'Try::Tiny';
requires 'Task::Weaken';
requires 'Types::Standard'=> 1.012000;
requires 'Message::Passing' => '0.009';
test_requires 'Test::More' => '0.88';
author_requires(
'Test::Pod' => '1.14',
'Test::NoTabs' => '0',
'Test::Pod::Coverage' => '1.04',
'Pod::Coverage' => '0.19',
'Pod::Coverage::TrustPod' => '0',
'Test::Spelling' => '0',
);
author_tests 't/author';
if ($Module::Install::AUTHOR) {
system("pod2text lib/Message/Passing/AMQP.pm > README")
and die $!;
}
WriteAll;