DoctorKarma/Makefile.PL

32 lines
873 B
Makefile
Raw Normal View History

2022-02-04 20:43:32 +01:00
use ExtUtils::MakeMaker;
WriteMakefile(
2022-02-06 18:07:40 +01:00
NAME => 'DoctorKarma',
2022-02-04 20:43:32 +01:00
VERSION => '0.1',
INST_SCRIPT => './bin',
INST_BIN => './bin',
test => { TESTS => 't/*.t' },
PREREQ_PM => {
'Carp' => '0',
'Const::Fast' => '0',
'DBI' => '0',
'Data::Dumper' => '0',
'ExtUtils::MakeMaker' => '0',
'JSON' => '0',
'Mojo::URL' => '0',
'Mojo::UserAgent' => '0',
'Params::ValidationCompiler' => '0',
'Path::Tiny' => '0',
'Sys::Syslog' => '0',
'Term::ReadLine' => '0',
'Test::MockModule' => '0',
'Test::MockObject' => '0',
'Test::Most' => '0',
'Types::Standard' => '0',
'strict' => '0',
'v5.30.0' => '0',
'warnings' => '0',
'DBD::SQLite' => 0,
2022-02-09 23:35:40 +01:00
'DateTime::Format::ISO8601' => 0,
2022-02-04 20:43:32 +01:00
},
);