-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile.PL
39 lines (36 loc) · 1.13 KB
/
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
use lib '.';
use strict;
use warnings;
use inc::Module::Install;
# Definition.
abstract 'Interface to the Warsaw Tube Map.';
author 'Michal Josef Spacek <skim@cpan.org>';
author_requires 'English' => 0;
author_requires 'File::Object' => 0.08;
author_requires 'Test::More' => 0;
author_requires 'Test::NoWarnings' => 0;
author_requires 'Test::Pod' => 0;
author_requires 'Test::Pod::Coverage' => 0;
install_share 'share';
license 'bsd';
license 'artistic_2';
name 'Map-Tube-Warsaw';
readme_from 'Warsaw.pm';
recursive_author_tests('xt');
requires 'File::Share' => 0;
requires 'Map::Tube' => '3.41';
requires 'Moo' => 0;
requires 'namespace::clean' => 0;
requires 'perl' => '5.8.0';
resources 'bugtracker' => 'https://github.com/michal-josef-spacek/Map-Tube-Warsaw/issues';
resources 'homepage' => 'https://github.com/michal-josef-spacek/Map-Tube-Warsaw';
resources 'repository' => 'git://github.com/michal-josef-spacek/Map-Tube-Warsaw';
test_requires 'Encode' => 0;
test_requires 'English' => 0;
test_requires 'Test::Map::Tube' => 0.35;
test_requires 'Test::More' => 0;
test_requires 'Test::NoWarnings' => 0;
tests_recursive;
version '0.09';
# Run.
WriteAll();