replace Makefile.PL with dist.ini
[catagits/HTML-Zoom.git] / Makefile.PL
CommitLineData
0767fbba 1use strict;
2use warnings FATAL => 'all';
3use 5.008001;
4use ExtUtils::MakeMaker;
5
6(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
7
8WriteMakefile(
9 NAME => 'HTML-Zoom',
10 VERSION_FROM => 'lib/HTML/Zoom.pm',
11 PREREQ_PM => { strictures => 1, 'Test::More' => '0.88' },
12 test => { TESTS => 't/*.t t/*/*.t' },
13);