website/Makefile.PL

16 lines
331 B
Makefile
Raw Normal View History

2022-10-14 20:58:36 -05:00
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
VERSION => '0.01',
PREREQ_PM => {
2022-11-03 12:42:42 -05:00
'Mojolicious' => '9.27',
'Email::MIME' => '1.952',
'Email::Sender::Simple' => '2.500',
'File::ChangeNotify' => '0.31',
2022-10-14 20:58:36 -05:00
},
test => {TESTS => 't/*.t'}
);