website/Makefile.PL

15 lines
269 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-10-15 01:12:39 -05:00
'Mojolicious' => '9.27',
'Email::MIME' => '1.952',
'Email::Sender::Simple' => '2.500'
2022-10-14 20:58:36 -05:00
},
test => {TESTS => 't/*.t'}
);