website/Makefile.PL

13 lines
173 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 => {
'Mojolicious' => '9.27'
},
test => {TESTS => 't/*.t'}
);