The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/env perl

use strict;
use warnings;

use 5.008001;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME              => 'WWW::Salesforce',
    VERSION_FROM      => 'lib/WWW/Salesforce.pm',
    PREREQ_PM         => {
        'Crypt::SSLeay' => 0.56,
        'SOAP::Lite'    => 0.68,
    },
    ABSTRACT_FROM => 'lib/WWW/Salesforce.pm',
    AUTHOR => 'Chase Whitener <cwhitener@gmail.com>',
    LICENSE => 'perl',
    META_MERGE => {
        'meta-spec' => { version => 2 },
        resources => {
            repository => {
                type => 'git',
                url  => 'https://github.com/redhotpenguin/WWW-Salesforce.git',
                web  => 'https://github.com/redhotpenguin/WWW-Salesforce',
            },
        },
    },
);