Bio-KEGG-API

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

      "configure" : {
         "requires" : {
            "ExtUtils::MakeMaker" : "0"
         }
      },
      "runtime" : {
         "requires" : {
            "Moose" : "0",
            "Net::FTP::Tiny" : "0",
            "REST::Client" : "0",
            "namespace::autoclean" : "0",
            "perl" : "5.006"
         }
      }
   },
   "release_status" : "stable",
   "resources" : {
      "bugtracker" : {
         "web" : "http://rt.cpan.org/NoAuth/Bugs.html?Dist=Bio-KEGG-API"
      },
      "homepage" : "https://github.com/Leprevost/Bio-KEGG-API",

META.yml  view on Meta::CPAN

  version: '1.4'
name: Bio-KEGG-API
no_index:
  directory:
    - t
    - inc
requires:
  Moose: '0'
  Net::FTP::Tiny: '0'
  REST::Client: '0'
  namespace::autoclean: '0'
  perl: '5.006'
resources:
  bugtracker: http://rt.cpan.org/NoAuth/Bugs.html?Dist=Bio-KEGG-API
  homepage: https://github.com/Leprevost/Bio-KEGG-API
  repository: https://github.com/Leprevost/Bio-KEGG-API
version: '0.02'

Makefile.PL  view on Meta::CPAN

    PL_FILES         => {},
    MIN_PERL_VERSION => 5.006,
    CONFIGURE_REQUIRES => {
        'ExtUtils::MakeMaker' => 0,
    },
    BUILD_REQUIRES => {
        'Test::More' => 0,
    },
    PREREQ_PM => {
        'Moose'					=> 0,
		'namespace::autoclean'	=> 0,
		'REST::Client'			=> 0,
		'Net::FTP::Tiny'		=> 0,
    },
    (! eval { ExtUtils::MakeMaker->VERSION(6.46) } ? () :
        (META_ADD => {
    	    resources => {
                homepage   => 'https://github.com/Leprevost/Bio-KEGG-API',
                repository => 'https://github.com/Leprevost/Bio-KEGG-API',
                bugtracker => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=Bio-KEGG-API',
            },

lib/Bio/KEGG/API.pm  view on Meta::CPAN

package Bio::KEGG::API;

use v5.12;
use strict;
use warnings;
use Moose;
use namespace::autoclean;
use REST::Client;
use Net::FTP::Tiny qw(ftp_get);

our $VERSION = '0.02';

has 'client' => (
		is	=>	'rw',
		isa	=>	'REST::Client',
		default => sub {
		my $self = shift;

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

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