-
Notifications
You must be signed in to change notification settings - Fork 4
/
Makefile.PL
31 lines (29 loc) · 985 Bytes
/
Makefile.PL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
ABSTRACT => 'App::Parrot::Create',
AUTHOR => 'Jonathan "Duke" Leto <[email protected]>',
LICENSE => 'perl',
VERSION => '0.01',
PREREQ_PM => {
'Mojolicious' => '3.85',
'Moose' => '2.0401',
'Moose::Role' => '2.0401',
'Method::Signatures' => 0,
'YAML' => 0,
'Archive::Zip' => 0,
'Mojolicious::Plugin::RenderFile' => '0.01',
'Mojolicious::Plugin::YamlConfig' => '0.1.5',
'Template' => '2.23'
},
BUILD_REQUIRES => {
'Test::Most' => 0
},
META_MERGE =>{
resources => {
repository => 'http://github.com/letolabs/app-parrot-create',
},
},
test => {TESTS => 't/*.t'}
);