correct time
[p5sagit/Eval-WithLexicals.git] / Makefile.PL
1 use strict;
2 use warnings FATAL => 'all';
3 use ExtUtils::MakeMaker;
4
5 WriteMakefile(
6   NAME => 'Eval::WithLexicals',
7   VERSION_FROM => 'lib/Eval/WithLexicals.pm',
8   ABSTRACT_FROM => 'lib/Eval/WithLexicals.pm',
9   AUTHOR => 'Matt S Trout <mst@shadowcat.co.uk>',
10   LICENSE => 'perl',
11   PREREQ_PM => { Moo => '0.009' },
12   EXE_FILES => [ 'bin/tinyrepl' ],
13 );