The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# This Makefile.PL for AI-PredictionClient was generated by
# Dist::Zilla::Plugin::MakeMaker::Awesome 0.38.
# Don't edit it but the dist.ini and plugins used to construct it.

use strict;
use warnings;

use 5.010;
use ExtUtils::MakeMaker;

die 'Unsupported OS' if $^O eq 'MSWin32';
use Inline::MakeMaker;

my %WriteMakefileArgs = (
  "ABSTRACT" => "A Perl Prediction client for Google TensorFlow Serving.",
  "AUTHOR" => "Tom Stall <stall\@cpan.org>",
  "CONFIGURE_REQUIRES" => {
    "AI::PredictionClient::Alien::TensorFlowServingProtos" => 0,
    "Alien::Google::GRPC" => 0,
    "ExtUtils::MakeMaker" => 0,
    "Inline" => 0,
    "Inline::CPP" => 0,
    "Inline::MakeMaker" => 0
  },
  "DISTNAME" => "AI-PredictionClient",
  "EXE_FILES" => [
    "bin/Inception.pl"
  ],
  "LICENSE" => "perl",
  "MIN_PERL_VERSION" => "5.010",
  "NAME" => "AI::PredictionClient",
  "PREREQ_PM" => {
    "AI::PredictionClient::Alien::TensorFlowServingProtos" => 0,
    "Alien::Google::GRPC" => 0,
    "Cwd" => 0,
    "Data::Dumper" => 0,
    "Inline" => 0,
    "JSON" => 0,
    "MIME::Base64" => 0,
    "Moo" => 0,
    "Moo::Role" => 0,
    "MooX::Options" => 0,
    "Perl6::Form" => 0,
    "strict" => 0,
    "warnings" => 0
  },
  "TEST_REQUIRES" => {
    "Test::More" => 0
  },
  "VERSION" => "0.02",
  "test" => {
    "TESTS" => "t/*.t"
  }
);

my %FallbackPrereqs = (
  "AI::PredictionClient::Alien::TensorFlowServingProtos" => 0,
  "Alien::Google::GRPC" => 0,
  "Cwd" => 0,
  "Data::Dumper" => 0,
  "Inline" => 0,
  "JSON" => 0,
  "MIME::Base64" => 0,
  "Moo" => 0,
  "Moo::Role" => 0,
  "MooX::Options" => 0,
  "Perl6::Form" => 0,
  "Test::More" => 0,
  "strict" => 0,
  "warnings" => 0
);

unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
  delete $WriteMakefileArgs{TEST_REQUIRES};
  delete $WriteMakefileArgs{BUILD_REQUIRES};
  $WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs;
}

delete $WriteMakefileArgs{CONFIGURE_REQUIRES}
  unless eval { ExtUtils::MakeMaker->VERSION(6.52) };

WriteMakefile(%WriteMakefileArgs);