more better tests
[p5sagit/Function-Parameters.git] / Makefile.PL
1 use strict;
2 use warnings;
3 use ExtUtils::MakeMaker;
4
5 WriteMakefile(
6     NAME                => 'Function::Parameters',
7     AUTHOR              => q{Lukas Mai <l.mai@web.de>},
8     VERSION_FROM        => 'lib/Function/Parameters.pm',
9     ABSTRACT_FROM       => 'lib/Function/Parameters.pm',
10     ($ExtUtils::MakeMaker::VERSION >= 6.3002
11       ? ('LICENSE'=> 'perl')
12       : ()),
13     PL_FILES            => {},
14     BUILD_REQUIRES => {
15         'Dir::Self' => 0,
16     },
17     PREREQ_PM => {
18         'Test::More' => 0,
19         'warnings' => 0,
20         'strict' => 0,
21         'Devel::Declare' => 0,
22         'B::Hooks::EndOfScope' => 0,
23         'Carp' => 0,
24     },
25     dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
26     clean               => { FILES => 'Function-Parameters-*' },
27 );