1use 5.00503;
2use ExtUtils::MakeMaker;
3# See lib/ExtUtils/MakeMaker.pm for details of how to influence
4# the contents of the Makefile that is written.
5WriteMakefile(
6    'NAME'		=> 'JSON::RPC',
7    'VERSION_FROM'	=> 'lib/JSON/RPC.pm', # finds $VERSION
8    'PREREQ_PM'		=> {
9              Test::More        => 0,
10              CGI               => 2.92,
11              HTTP::Request     => 0,
12              HTTP::Response    => 0,
13              JSON              => 2.0,
14              LWP::UserAgent    => 2.001,
15    }, # e.g., Module::Name => 1.1
16    ($] >= 5.005 ?    ## Add these new keywords supported since 5.005
17      (ABSTRACT_FROM => 'lib/JSON/RPC.pm', # retrieve abstract from module
18       AUTHOR     => 'Makamaka Hannyaharamitu, E<lt>makamaka[at]cpan.orgE<gt>') : ()),
19);
20