|
use 5.16.0;
WriteMakefile(
NAME => 'App::Docker::Client' ,
AUTHOR => q{Mario Zieschang <mziescha@cpan.org>} ,
VERSION_FROM => 'lib/App/Docker/Client.pm' ,
ABSTRACT_FROM => 'lib/App/Docker/Client.pm' ,
LICENSE => 'artistic_2' ,
PL_FILES => {},
MIN_PERL_VERSION => 5.16.0,
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => 0,
},
PREREQ_PM => {
'URI' => 1.71,
'HTTP::Request' => 6.01,
'JSON' => 2.90,
'LWP::UserAgent' => 6.12,
'LWP::Protocol::http::SocketUnixAlt' => 0,
'Carp' => 0,
},
TEST_REQUIRES => {
'Test::More' => 0,
'File::Spec' => 0,
'FindBin' => 0,
},
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git' ,
},
}
},
dist => { COMPRESS => 'gzip -9f' , SUFFIX => 'gz' , },
clean => { FILES => 'App-Docker-Client-*' , 'cover_db' , },
);
|