diff options
Diffstat (limited to 'Makefile.PL')
-rw-r--r-- | Makefile.PL | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000..2654f66 --- /dev/null +++ b/Makefile.PL @@ -0,0 +1,14 @@ +use strict; +use warnings; +use ExtUtils::MakeMaker; + +WriteMakefile( + NAME => 'Net::DashCS', + AUTHOR => 'Jeff Finucane <dashcs@weasellips.com>', + VERSION_FROM => 'lib/Net/DashCS.pm', + ABSTRACT_FROM => 'lib/Net/DashCS.pm', + PREREQ_PM => { + 'SOAP::WSDL' => 2, + 'SOAP::Lite' => 0.71, + }, +); |