Release commit for 0.002002
[scpubgit/Object-Remote.git] / Makefile.PL
CommitLineData
9e72f0cf 1use strict;
2use warnings FATAL => 'all';
3use ExtUtils::MakeMaker;
4
5(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
6
7WriteMakefile(
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 },
80d18f39 16 EXE_FILES => [
17 'bin/object-remote-node',
18 'bin/object-remote-slave',
19 'bin/remoterepl',
20 ],
9e72f0cf 21);