The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile (
	NAME => 'Net::SMS::Cellsynt',
	AUTHOR => 'Olof Johansson <zibri@cpan.org>',
	LICENSE => 'perl',
	ABSTRACT_FROM => 'lib/Net/SMS/Cellsynt.pm',
	VERSION_FROM => 'lib/Net/SMS/Cellsynt.pm',
	
	PREREQ_PM => {
		'WWW::Curl::Easy' => 0,
		'URI' => 0,
		'URI::QueryParam' => 0,
		'URI::Escape' => 0,
	},
	
	SIGN => 1,
);