some reading material
[Net-DashCS.git] / Makefile.PL
1 use strict;
2 use warnings;
3 use ExtUtils::MakeMaker;
4
5 WriteMakefile(
6   NAME          => 'Net::DashCS',
7   AUTHOR        => 'Jeff Finucane <dashcs@weasellips.com>',
8   VERSION_FROM  => 'lib/Net/DashCS.pm',
9   ABSTRACT_FROM => 'lib/Net/DashCS.pm',
10   PREREQ_PM     => {
11     'SOAP::WSDL' => 2,
12     'SOAP::Lite' => 0.71,
13   },
14 );