1use ExtUtils::MakeMaker;
2# See lib/ExtUtils/MakeMaker.pm for details of how to influence
3# the contents of the Makefile that is written.
4WriteMakefile(
5    NAME         => 'WebService::Technorati',
6    VERSION_FROM => 'lib/WebService/Technorati.pm', # finds $VERSION
7    AUTHOR       => 'Ian Kallen (ikallen@technorati.com)',
8    ABSTRACT     => '',
9    PREREQ_PM    => {
10                     'Exception::Class' => 1.19,
11                     'XML::XPath' => 1.13,
12                     'Test::Simple' => 0.44,
13                    },
14);
15