Clarify exception on unexpected try() arguments
[p5sagit/Try-Tiny.git] / Makefile.PL
CommitLineData
3176feef 1use strict;
2
3use ExtUtils::MakeMaker;
4
2531688c 5require 5.006;
2ab8fb1c 6
3176feef 7WriteMakefile(
8d2ee831 8 NAME => 'Try::Tiny',
9 VERSION_FROM => 'lib/Try/Tiny.pm',
10 INSTALLDIRS => 'site',
11 PL_FILES => { },
12 PREREQ_PM => {
13 'Test::More' => 0,
14 },
15 META_MERGE => {
2531688c 16 dynamic_config => 0,
8d2ee831 17 resources => {
18 homepage => 'https://github.com/doy/try-tiny.git',
19 repository => 'git://github.com/doy/try-tiny.git',
20 },
21 },
3176feef 22);