forked from mojoconf/MCT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
29 lines (29 loc) · 1.03 KB
/
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
# Generated by git-ship. See 'git-ship --man' for help or https://github.com/jhthorsen/app-git-ship
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'MCT',
AUTHOR => 'Joel Berger <[email protected]>',
LICENSE => 'bsd',
ABSTRACT_FROM => 'lib/MCT.pm',
VERSION_FROM => 'lib/MCT.pm',
EXE_FILES => [qw( script/mct )],
META_MERGE => {
resources => {
bugtracker => 'https://github.com/jberger/mct/issues',
homepage => 'https://github.com/jberger/mct',
repository => 'https://github.com/jberger/mct',
},
},
BUILD_REQUIRES => {'Test::More' => '0.88'},
PREREQ_PM => {
'DBD::Pg' => '3.4.2',
'IO::Socket::SSL' => '1.94',
'Mojolicious' => '6.00',
'Mojo::Pg' => '1.10',
'Mojolicious::Plugin::OAuth2' => '1.51',
'Mojolicious::Plugin::AssetPack' => '0.39',
'Mojolicious::Plugin::StripePayment' => '0.02',
'Text::Markdown' => '1.0',
},
test => {TESTS => 't/*.t'},
);