-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
43 lines (40 loc) · 1.27 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
40
41
42
43
use lib '.';
use strict;
use warnings;
use inc::Module::Install;
# Definition.
abstract 'Wikibase data types.';
author 'Michal Josef Spacek <skim@cpan.org>';
author_requires 'English' => 0;
author_requires 'File::Object' => 0.05;
author_requires 'Test::More' => 0;
author_requires 'Test::NoWarnings' => 0;
author_requires 'Test::Pod' => 0;
author_requires 'Test::Pod::Coverage' => 0;
license 'bsd';
name 'Wikibase-Datatype';
perl_version 5.006002;
readme_from 'lib/Wikibase/Datatype.pm';
recursive_author_tests('xt');
requires 'Class::Utils' => 0.03;
requires 'DateTime' => 0;
requires 'Error::Pure' => 0.15;
requires 'Exporter' => 0;
requires 'Mo' => 0;
requires 'Mo::utils' => 0.14;
requires 'List::MoreUtils' => 0;
requires 'List::Util' => 1.33;
requires 'Readonly' => 0;
requires 'Unicode::UTF8' => 0;
resources 'bugtracker' => 'https://github.com/michal-josef-spacek/Wikibase-Datatype/issues',
resources 'homepage' => 'https://github.com/michal-josef-spacek/Wikibase-Datatype';
resources 'repository' => 'git://github.com/michal-josef-spacek/Wikibase-Datatype';
test_requires 'English' => 0;
test_requires 'Error::Pure::Utils' => 0;
test_requires 'Test::MockObject' => 0;
test_requires 'Test::More' => 0;
test_requires 'Test::NoWarnings' => 0;
tests_recursive;
version '0.35';
# Run.
WriteAll();