better arg count checks for methods (include $self)
[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     CONFIGURE_REQUIRES => {
11         'ExtUtils::MakeMaker' => '6.56',
12     },
13     LICENSE => 'perl',
14     PL_FILES => {},
15     BUILD_REQUIRES => {
16         'Dir::Self' => 0,
17         'Test::More' => 0,
18     },
19     PREREQ_PM => {
20         'Carp' => 0,
21         'XSLoader' => 0,
22         'warnings' => 0,
23         'strict' => 0,
24     },
25     MIN_PERL_VERSION => '5.14.0',
26     dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
27     clean               => { FILES => 'Function-Parameters-*' },
28 );