The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

use strict;
use warnings;

use Module::Build 0.3601;


my %module_build_args = (
  "build_requires" => {
    "File::Find" => 0,
    "File::Temp" => 0,
    "Module::Build" => "0.3601",
    "Test::More" => 0,
    "Test::Requires" => 0,
    "XML::Compile::Tester" => 0
  },
  "configure_requires" => {
    "Module::Build" => "0.3601"
  },
  "dist_abstract" => "Client implementation of the Parallels Virtuozzo XML API",
  "dist_author" => [
    "Richard Sim\303\265es <rsimoes AT cpan DOT org>"
  ],
  "dist_name" => "VM-Virtuozzo",
  "dist_version" => "v0.0.5",
  "license" => "lgpl",
  "module_name" => "VM::Virtuozzo",
  "recommends" => {},
  "recursive_test_files" => 1,
  "requires" => {
    "File::ShareDir" => 0,
    "IO" => 0,
    "XML::Compile::Cache" => 0,
    "XML::Compile::Util" => 0,
    "namespace::clean" => 0,
    "perl" => "v5.10.0"
  },
  "script_files" => [],
  "share_dir" => {
    "dist" => "xsd"
  }
);


my $build = Module::Build->new(%module_build_args);

$build->create_build_script;