Fix README, dependencies
[catagits/Catalyst-Engine-STOMP.git] / Makefile.PL
1 use 5.008008;
2 use ExtUtils::MakeMaker;
3 # See lib/ExtUtils/MakeMaker.pm for details of how to influence
4 # the contents of the Makefile that is written.
5 WriteMakefile(
6     NAME              => 'Catalyst::Engine::Stomp',
7     VERSION_FROM      => 'lib/Catalyst/Engine/Stomp.pm', # finds $VERSION
8     PREREQ_PM         => {
9                           Catalyst::Engine::Embeddable => 0.0.1,
10                           Catalyst::Runtime => 5.80003,
11                           Moose => 0,
12                           Net::Stomp => 0.34,
13                           YAML::XS => 0.32,
14                          },
15     ($] >= 5.005 ?     ## Add these new keywords supported since 5.005
16       (ABSTRACT_FROM  => 'lib/Catalyst/Engine/Stomp.pm',
17        AUTHOR         => 'Chris Andrews <chris@nodnol.org>') : ()),
18 );