Initial release
[poe-component-irc-plugin-hello.git] / Makefile.PL
1 use 5.014000;
2 use ExtUtils::MakeMaker;
3
4 WriteMakefile(
5 NAME => 'POE::Component::IRC::Plugin::Hello',
6 VERSION_FROM => 'lib/POE/Component/IRC/Plugin/Hello.pm',
7 ABSTRACT_FROM => 'lib/POE/Component/IRC/Plugin/Hello.pm',
8 AUTHOR => 'Marius Gavrilescu <marius@ieval.ro>',
9 MIN_PERL_VERSION => 5.014000,
10 LICENSE => 'perl',
11 SIGN => 1,
12 PREREQ_PM => {
13 'List::Util' => 0,
14 'IRC::Utils' => 0,
15 'POE::Component::IRC::Plugin' => 0,
16 },
17 BUILD_REQUIRES => {
18 'Test::MockObject' => 1.09,
19 },
20 );
This page took 0.021061 seconds and 4 git commands to generate.