factor test setup code into a module
[scpubgit/App-EzPz.git] / Makefile.PL
1 use strict;
2 use warnings FATAL => 'all';
3 use 5.008001;
4 use ExtUtils::MakeMaker;
5
6 WriteMakefile(
7   NAME => 'App-EzPz',
8   VERSION => 0,
9   PREREQ_PM => {
10     Moo => 0,
11     'IO::All' => 0,
12     'Module::Runtime' => 0,
13     'Eval::WithLexicals' => 0,
14     'IPC::System::Simple' => 0,
15     strictures => 0,
16     'File::Which' => 0
17   }
18 );