Release commit for 1.000006
[scpubgit/HTML-String.git] / Makefile.PL
CommitLineData
5d1f8c88 1use strict;
a38082d4 2use warnings FATAL => 'all';
5d1f8c88 3use ExtUtils::MakeMaker;
4
a38082d4 5(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
6
7
5d1f8c88 8WriteMakefile(
e0c6c64f 9 NAME => 'HTML::String',
a38082d4 10 VERSION_FROM => 'lib/HTML/String.pm',
5d1f8c88 11 PREREQ_PM => {
12 'Safe::Isa' => 1,
13 'Data::Munge' => '0.04',
14 'B::Hooks::EndOfScope' => '0.11',
15 'strictures' => 1,
586054e0 16 'UNIVERSAL::ref' => 0.14,
5d1f8c88 17 }
18);