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::Slurp" => 0,
    "File::Which" => 0,
    "File::chdir" => 0,
    "Module::Build" => "0.3601",
    "Test::More" => "0.98",
    "Test::Perinci::Tx::Manager" => "0.41"
  },
  "configure_requires" => {
    "Module::Build" => "0.3601"
  },
  "dist_abstract" => "Move file/directory using rename/rsync, with undo support",
  "dist_author" => [
    "Steven Haryanto <stevenharyanto\@gmail.com>"
  ],
  "dist_name" => "File-Move-Undoable",
  "dist_version" => "0.02",
  "license" => "perl",
  "module_name" => "File::Move::Undoable",
  "recommends" => {},
  "recursive_test_files" => 1,
  "requires" => {
    "Builtin::Logged" => 0,
    "File::Trash::Undoable" => "0.08",
    "Log::Any" => 0,
    "Rinci" => "v1.1.29",
    "SHARYANTO::File::Util" => "0.27",
    "SHARYANTO::Proc::ChildError" => 0,
    "Setup" => "v1.0.4",
    "Sys::Filesystem::MountPoint" => 0,
    "perl" => "5.010001"
  },
  "script_files" => []
);


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

$build->create_build_script;