Poloniex-API

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN

use 5.008008;
use strict;
use warnings;
use ExtUtils::MakeMaker;

# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    NAME         => 'Poloniex::API',
    VERSION_FROM => 'lib/Poloniex/API.pm',    # finds $VERSION
    LICENSE      => 'perl',
    (
        $] >= 5.005
        ?    ## Add these new keywords supported since 5.005
          (
            AUTHOR => 'vlad mirkos <mirkos.vf@gmail.com>'
          )
        : ()
    ),
    PREREQ_PM => {
        map { $_ => 0 }
          qw(JSON::XS Test::MockObject HTTP::Request Digest::SHA Test::Perl::Critic Test::Pod Test::PerlTidy),
    },
    META_MERGE => {
        test_requires => {
            map { $_ => 0 }
              qw(Test::More Test::MockObject Test::Perl::Critic Test::Pod Test::PerlTidy),
        },
        resources => {
            license    => 'http://dev.perl.org/licenses/',
            repository => 'https://github.com/mirkos-vf/Poloniex-API',
            bugtracker => 'https://github.com/mirkos-vf/Poloniex-API/issues'
        },
    },
);

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 0.699 second using v1.00-cache-2.02-grep-82fe00e-cpan-eac11a1d038b )