-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
30 lines (29 loc) · 1015 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
use 5.008004;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Email::Address::Classify',
VERSION_FROM => 'lib/Email/Address/Classify.pm',
ABSTRACT_FROM => 'lib/Email/Address/Classify.pm',
AUTHOR => 'Kent Oyer <[email protected]>',
LICENSE => 'GPL_3',
MIN_PERL_VERSION => '5.008004',
PREREQ_PM => {
'strict' => 0,
'warnings' => 0,
'File::Basename' => 0,
},
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'https://github.com/mxguardian/Email-Address-Classify.git',
web => 'https://github.com/mxguardian/Email-Address-Classify',
},
bugtracker => {
web => 'https://github.com/mxguardian/Email-Address-Classify/issues'
},
homepage => 'https://github.com/mxguardian/Email-Address-Classify',
},
},
);