no Data::Dumper
[Net-VoIP_Innovations.git] / Makefile.PL
1 use strict;
2 use warnings;
3 use ExtUtils::MakeMaker;
4
5 WriteMakefile(
6     NAME                => 'Net::VoIP_Innovations',
7     AUTHOR              => 'Ivan Kohler <ivan-net-voipinnovations@freeside.biz>',
8     VERSION_FROM        => 'lib/Net/VoIP_Innovations.pm',
9     ABSTRACT_FROM       => 'lib/Net/VoIP_Innovations.pm',
10     PL_FILES            => {},
11     PREREQ_PM => {
12         'Test::More'      => 0,
13         'SOAP::Lite'      => 0,
14     },
15     dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
16     clean               => { FILES => 'Net-VoIP_Innovations-*' },
17 );