Commit | Line | Data |
---|---|---|
02b7b45d JRT |
1 | ####################################################################### |
2 | # $URL$ | |
3 | # $Date$ | |
4 | # $Author$ | |
5 | # $Revision$ | |
6 | ######################################################################## | |
7 | ||
59b05e08 JRT |
8 | use strict; |
9 | use warnings; | |
10 | ||
11 | use ExtUtils::MakeMaker; | |
12 | ||
13 | WriteMakefile( NAME => 'Perl::Critic', | |
14 | AUTHOR => 'Jeffrey Thalhammer <thaljef@cpan.org>', | |
15 | ABSTRACT_FROM => 'lib/Perl/Critic.pm', | |
16 | VERSION_FROM => 'lib/Perl/Critic.pm', | |
17 | EXE_FILES => ['bin/perlcritic'], | |
18 | PL_FILES => {}, | |
19 | PREREQ_PM => {'PPI' => 1.103, | |
20 | 'Config::Tiny' => 2, | |
21 | 'File::Spec' => 0, | |
22 | 'List::MoreUtils' => 0, | |
23 | 'List::Util' => 0, | |
24 | 'Pod::Usage' => 0, | |
25 | 'Pod::PlainText' => 0, | |
26 | 'Test::More' => 0, | |
27 | 'IO::String' => 0, | |
28 | 'String::Format' => 1.13, | |
29 | }, | |
30 | ||
31 | ); |