Initial commit
[app-edwardng.git] / Makefile.PL
1 use 5.014000;
2 use ExtUtils::MakeMaker;
3
4 WriteMakefile(
5 NAME => 'App::EdwardNG',
6 VERSION_FROM => 'lib/App/EdwardNG.pm',
7 ABSTRACT_FROM => 'lib/App/EdwardNG.pm',
8 AUTHOR => 'Marius Gavrilescu <marius@ieval.ro>',
9 MIN_PERL_VERSION => '5.14.0',
10 LICENSE => 'perl',
11 SIGN => 1,
12 PREREQ_PM => {
13 qw/Email::Sender::Simple 0
14 File::Slurp 0
15 Getopt::Long 0
16 MIME::Entity 5.419
17 MIME::Parser 5.419
18 Mail::GnuPG 0
19 PerlX::Maybe 0
20 Template 0
21 Try::Tiny 0/
22 },
23 META_MERGE => {
24 dynamic_config => 0,
25 resources => {
26 repository => 'https://git.ieval.ro/?p=app-edwardng.git',
27 }
28 }
29 );
This page took 0.021975 seconds and 4 git commands to generate.