Initial commit
[webservice-tdwtf.git] / Makefile.PL
CommitLineData
54c23de0
MG
1use 5.014000;
2use ExtUtils::MakeMaker;
3
4my $has_tr = $ExtUtils::MakeMaker::VERSION >= 6.64;
5my @tr = (($has_tr ? 'TEST_REQUIRES' : 'BUILD_REQUIRES') => {
6 qw/Test::RequiresInternet 0/,
7});
8
9WriteMakefile(
10 NAME => 'WebService::TDWTF',
11 VERSION_FROM => 'lib/WebService/TDWTF.pm',
12 ABSTRACT_FROM => 'lib/WebService/TDWTF.pm',
13 AUTHOR => 'Marius Gavrilescu <marius@ieval.ro>',
14 MIN_PERL_VERSION => '5.14.0',
15 LICENSE => 'perl',
16 SIGN => 1,
17 PREREQ_PM => {
18 qw/Class::Accessor::Fast 0
19 JSON::MaybeXS 0/,
20 },
21 @tr,
22 META_ADD => {
23 dynamic_config => 0,
24 resources => {
25 repository => 'https://git.ieval.ro/?p=webservice-tdwtf.git',
26 },
27 }
28);
This page took 0.010976 seconds and 4 git commands to generate.