-
Notifications
You must be signed in to change notification settings - Fork 31
/
Makefile.PL
40 lines (38 loc) · 1.54 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
30
31
32
33
34
35
36
37
38
39
40
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Dancer::Plugin::SimpleCRUD',
AUTHOR => q{David Precious <[email protected]>},
VERSION_FROM => 'lib/Dancer/Plugin/SimpleCRUD.pm',
ABSTRACT_FROM => 'lib/Dancer/Plugin/SimpleCRUD.pm',
($ExtUtils::MakeMaker::VERSION >= 6.3002
? ('LICENSE'=> 'perl')
: ()),
PL_FILES => {},
PREREQ_PM => {
'Test::More' => 0,
'Test::Differences' => 0.64,
'Dancer' => 1.3,
'Dancer::Plugin::Database' => 2.13,
'Dancer::Plugin::Database::Core' => 0.20,
#'Dancer::Plugin::DBIC' => 0.2104, # we do not make this a hard dependency
#'DBIx::Class::Schema::Loader' => 0.07049, # also not a hard dependency
'HTML::Table::FromDatabase' => 1.10,
'CGI::FormBuilder' => 3.10,
'DBD::SQLite' => 1.50,
'HTML::TreeBuilder' => 5.03,
'List::MoreUtils' => 0.416,
'Moo' => 0,
'Dancer::Plugin::Auth::Extensible' => 0, # for auth login tests
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Dancer-Plugin-SimpleCRUD-*' },
META_MERGE => {
resources => {
repository => 'https://github.com/bigpresh/Dancer-Plugin-SimpleCRUD',
bugtracker => 'https://github.com/bigpresh/Dancer-Plugin-SimpleCRUD/issues',
homepage => 'https://github.com/bigpresh/Dancer-Plugin-SimpleCRUD/wiki/Quick-intro',
},
},
);