Bump version and update Changes
[data-dump-sexp.git] / Makefile.PL
CommitLineData
9336e296
MG
1use strict;
2use warnings;
3use ExtUtils::MakeMaker;
4
5WriteMakefile(
6 NAME => 'Data::Dump::Sexp',
7 VERSION_FROM => 'lib/Data/Dump/Sexp.pm',
8 ABSTRACT_FROM => 'lib/Data/Dump/Sexp.pm',
9 AUTHOR => 'Marius Gavrilescu <marius@ieval.ro>',
10 MIN_PERL_VERSION => '5.14.0',
11 LICENSE => 'perl',
12 SIGN => 1,
13 PREREQ_PM => {
14 qw/Data::SExpression 0.41/,
15 },
0babca11
MG
16 TEST_REQUIRES => {
17 qw/Test::Exception 0/,
18 },
9336e296
MG
19 META_ADD => {
20 dynamic_config => 0,
21 resources => {
22 repository => 'https://git.ieval.ro/?p=data-dump-sexp.git',
23 },
24 }
25);
This page took 0.009774 seconds and 4 git commands to generate.