The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use warnings;
use v5.10;
use utf8;

use ExtUtils::MakeMaker;

WriteMakefile(
  NAME         => 'App::Environ::ClickHouse',
  VERSION_FROM => 'lib/App/Environ/ClickHouse.pm',
  PREREQ_PM    => {
    'App::Environ'     => '0.18',
    'HTTP::ClickHouse' => 0,
  },
  ABSTRACT_FROM => 'lib/App/Environ/ClickHouse.pm',
  AUTHOR        => 'Andrey Kuzmin <kak-tus@mail.ru>',
  META_MERGE    => {
    dynamic_config => 0,
    'meta-spec'    => { version => 2 },
    no_index       => { directory => [ 'example', 't' ] },
    prereqs        => { runtime => { requires => { perl => '5.010001' } } },
    resources      => {
      repository => {
        type => 'git',
        url  => 'https://github.com/kak-tus/App-Environ-ClickHouse.git',
        web  => 'https://github.com/kak-tus/App-Environ-ClickHouse',
      },
    },
  },
);