missing build dependency on IO::Prompter
[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   BUILD_REQUIRES => {
11      'IO::Prompter' => 0,       
12   },
13   PREREQ_PM => {
14     Moo => 0,
15     'Module::Runtime' => 0,
16     'JSON::PP' => 0,
17     'CPS::Future' => 0,
18     'Class::C3' => 0, # required to fatpack Moo
19   },
20   EXE_FILES => [
21     'bin/object-remote-node',
22     'bin/object-remote-slave',
23     'bin/remoterepl',
24   ],
25 );