initial Makefile.PL
[scpubgit/App-EzPz.git] / Makefile.PL
CommitLineData
d5b7f727 1use strict;
2use warnings FATAL => 'all';
3use 5.008001;
4use ExtUtils::MakeMaker;
5
6WriteMakefile(
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);