1use ExtUtils::MakeMaker;
2
3WriteMakefile(
4    'NAME'         => 'HTML::StripScripts::Parser',
5    'VERSION_FROM' => 'Parser.pm',
6    'ABSTRACT_FROM' => 'Parser.pm',
7    'AUTHOR'        => 'Nick Cleaton <nick@cleaton.net>,'
8        . ' Clinton Gormley <clint@traveljury.com>',
9    'PREREQ_PM'    => {
10                        'Test::More'         => 0,
11                        'HTML::StripScripts' => 1.05,
12                        'HTML::Parser'       => 3.56,
13                      },
14    $ExtUtils::MakeMaker::VERSION >= 6.31
15    ? ( 'LICENSE' => 'perl' )
16    : (),
17);
18
19