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

my $builder = Module::Build->new(
    module_name         => 'Test::WWW::Mechanize::LibXML',
    license             => 'mit',
    dist_author         => q{Shlomi Fish <shlomif@insurgentsoftware.com>},
    dist_version_from   => 'lib/Test/WWW/Mechanize/LibXML.pm',
    build_requires =>
    {
        'Test::More' => 0,
    },
    requires =>
    {
        'HTML::TreeBuilder::LibXML' => 0,
        'MRO::Compat' => 0,
        'Test::WWW::Mechanize' => 0,
        'strict' => 0,
        'warnings' => 0,
        'Test::More' => 0,
    },
    add_to_cleanup      => [ 'Test-WWW-Mechanize-LibXML-*' ],
    create_makefile_pl => 'traditional',
);

$builder->create_build_script();