-
Notifications
You must be signed in to change notification settings - Fork 6
/
Makefile.PL
37 lines (36 loc) · 1.1 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
use 5.010001;
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Data::Transpose',
AUTHOR => q{Stefan Hornburg (Racke) <[email protected]>},
VERSION_FROM => 'lib/Data/Transpose.pm',
ABSTRACT_FROM => 'lib/Data/Transpose.pm',
($ExtUtils::MakeMaker::VERSION >= 6.3002
? ('LICENSE'=> 'perl')
: ()),
PL_FILES => {},
BUILD_REQUIRES => {
'Test::More' => 0,
'Test::Warn' => 0,
},
PREREQ_PM => {
'Email::Valid' => 0,
'Try::Tiny' => 0,
'Module::Load' => 0,
'Scalar::Util' => 0,
'Business::CreditCard' => 0.32,
'Moo' => 0,
'MooX::Types::MooseLike' => 0,
'namespace::clean' => 0,
},
META_MERGE => {
resources => {
repository => 'https://github.com/racke/Data-Transpose',
bugtracker => 'https://github.com/racke/Data-Transpose/issues',
},
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Data-Transpose-*' },
);