add a note about $Object::Remote::FatNode::REMOTE_NODE
[scpubgit/Object-Remote.git] / Makefile.PL
1 use strict;
2 use warnings FATAL => 'all';
3 use ExtUtils::MakeMaker;
4
5 (do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
6
7 WriteMakefile(
8   NAME => 'Object::Remote',
9   VERSION_FROM => 'lib/Object/Remote.pm',
10   PREREQ_PM => {
11     Moo => 0,
12     'Module::Runtime' => 0,
13     'JSON::PP' => 0,
14     'CPS::Future' => 0,
15     'Class::C3' => 0, # required to fatpack Moo
16     'String::ShellQuote' => 0, # required for ssh argument manipulation
17     'Log::Contextual' => 0.005000
18   },
19   EXE_FILES => [
20     'bin/object-remote-node',
21     'bin/object-remote-slave',
22     'bin/remoterepl',
23   ],
24 );