test for finally{} getting the error
[p5sagit/Try-Tiny.git] / Makefile.PL
CommitLineData
3176feef 1use strict;
2
3use ExtUtils::MakeMaker;
4
2ab8fb1c 5require 5.005_04;
6
3176feef 7WriteMakefile(
8 NAME => 'Try::Tiny',
9 VERSION_FROM => 'lib/Try/Tiny.pm',
10 INSTALLDIRS => 'site',
11 SIGN => 1,
12 PL_FILES => { },
2ab8fb1c 13 PREREQ_PM => {
14 'Test::More' => 0,
15 },
3176feef 16);