forked from mytram/perl-argparse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
31 lines (28 loc) · 833 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
use strict;
use warnings;
use ExtUtils::MakeMaker;
my %WriteMakefileArgs = (
'ABSTRACT' => 'Parsing args with a richer and more user-friendly API',
'AUTHOR' => 'Mytram <[email protected]>',
'BUILD_REQUIRES' => {},
'DISTNAME' => 'Getopt-ArgParse',
'EXE_FILES' => [],
'LICENSE' => 'artistic_2',
'NAME' => 'Getopt-ArgParse',
MIN_PERL_VERSION => '5.008',
'PREREQ_PM' => {
'Moo' => '1.003',
'Getopt::Long' => '2.38',
'Test::Exception' => '0.31',
},
'VERSION_FROM' => 'lib/Getopt/ArgParse.pm',
'test' => {
'TESTS' => 't/*.t'
},
META_MERGE => {
resources => {
repository => 'https://github.com/mytram/perl-argparse',
},
},
);
WriteMakefile(%WriteMakefileArgs);