Bump version and update Changes
[html-element-library.git] / Makefile.PL
1 use ExtUtils::MakeMaker;
2 use strict;
3 use warnings;
4
5 WriteMakefile(
6 NAME => 'HTML::Element::Library',
7 VERSION_FROM => 'lib/HTML/Element/Library.pm',
8 ABSTRACT_FROM => 'lib/HTML/Element/Library.pm',
9 AUTHOR => [
10 'Terrence Brannon <metaperl@gmail.com>',
11 'Marius Gavrilescu <marius@ieval.ro>'
12 ],
13 MIN_PERL_VERSION => '5.6.0',
14 LICENSE => 'perl',
15 SIGN => 1,
16 BUILD_REQUIRES => {
17 qw/File::Slurp 0
18 HTML::PrettyPrinter 0
19 HTML::TreeBuilder 0
20 Test::More 0
21 Test::XML 0/,
22 },
23 PREREQ_PM => {
24 qw/Array::Group 0
25 Data::Rmap 0
26 HTML::Element 0
27 HTML::FillInForm 0
28 List::MoreUtils 0
29 List::Rotation::Cycle 0
30 List::Util 0
31 Params::Validate 0
32 Scalar::Listify 0/,
33 },
34 META_MERGE => {
35 dynamic_config => 0,
36 resources => {
37 repository => 'https://git.ieval.ro/?p=html-element-library.git',
38 },
39 }
40 );
This page took 0.023393 seconds and 4 git commands to generate.