The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use Module::Build;

use strict;

my $build = Module::Build->new(
    module_name => 'CGI::Application::Dispatch::Server',
    license => 'perl',
    requires => {
        'Scalar::Util'  => '1.18',
        'Carp'          => '0.01',
        'HTTP::Request' => '0',
        'HTTP::Status'  => '0',
        'IO::Capture::Stdout'          => '0',
        'CGI::Application'             => '0',
        'CGI::Application::Dispatch'   => '0',
        'HTTP::Server::Simple'         => '0.18',
        'HTTP::Server::Simple::Static' => '0.02',
        'HTTP::Server::Simple::CGI'    => 0,
        'Params::Validate'             => 0, 
    },
    optional => {
    },
    build_requires => {
        'Test::More'                 => '0.47',
#        'Test::Exception'            => '0.21',
#        'Test::HTTP::Server::Simple' => '0.02',
#        'Test::WWW::Mechanize'       => '1.08',
    },
    create_makefile_pl => 'traditional',
    recursive_test_files => 1,
    add_to_cleanup => [
        'META.yml', '*.bak', '*.gz', 'Makefile.PL',
    ],
);

$build->create_build_script;