Initial commit
[www-passmark.git] / Makefile.PL
1 use 5.014000;
2 use ExtUtils::MakeMaker;
3
4 WriteMakefile(
5 NAME => 'WWW::Passmark',
6 VERSION_FROM => 'lib/WWW/Passmark.pm',
7 ABSTRACT_FROM => 'lib/WWW/Passmark.pm',
8 AUTHOR => 'Marius Gavrilescu <marius@ieval.ro>',
9 MIN_PERL_VERSION => '5.14.0',
10 LICENSE => 'perl',
11 SIGN => 1,
12 PREREQ_PM => {
13 qw/HTML::TreeBuilder 0
14 LWP::UserAgent 0
15 LWP::Protocol::https 0
16 List::MoreUtils 0/,
17 },
18 TEST_REQUIRES => {
19 qw/Test::RequiresInternet 0/,
20 },
21 META_ADD => {
22 dynamic_config => 0,
23 resources => {
24 repository => 'https://git.ieval.ro/?p=www-passmark.git',
25 },
26 }
27 );
This page took 0.022146 seconds and 4 git commands to generate.