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
|
use 5.008001;
use strict;
use warnings;
use ExtUtils::MakeMaker::CPANfile;
WriteMakefile(
NAME => 'Module::CPANTS::Analyse',
AUTHOR => [
'Thomas Klausner <domm@cpan.org>',
'Kenichi Ishigaki <ishigaki@cpan.org>',
],
ABSTRACT_FROM => 'lib/Module/CPANTS/Analyse.pm',
VERSION_FROM => 'lib/Module/CPANTS/Analyse.pm',
LICENSE => 'perl',
META_MERGE => {
resources => {
homepage => 'https://cpants.cpanauthors.org',
repository => 'https://github.com/cpants/Module-CPANTS-Analyse',
bugtracker => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Module-CPANTS-Analyse',
},
keywords => [
'CPANTS','kwalitee',
],
},
test => {TESTS => 't/*.t t/*/*.t'},
);
|