The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl -w
use strict;
use Module::Build;

my $build = Module::Build->new(
    module_name => 'POE::Component::Client::Whois::Smart',
    license  => 'perl',
    requires => {
        'POE'               => 0,
        'URI::URL'          => 0,
        'HTTP::Request'     => 0,
	'POE::Filter::Line' => 0,
	'POE::Wheel::ReadWrite'         => 0,
	'POE::Wheel::SocketFactory'     => 0,
	'POE::Component::Client::HTTP'  => 0,
	'Net::Whois::Raw'               => '1.56',
    },
    create_makefile_pl => 'traditional',
);
$build->create_build_script;