diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 000000000..ef3ec4e1c --- /dev/null +++ b/Makefile.PL @@ -0,0 +1,11 @@ +use ExtUtils::MakeMaker; + +WriteMakefile( + NAME => 'Dancer', + VERSION_FROM => 'lib/Dancer.pm', + PREREQ_PM => { + 'HTTP::Server::Simple' => '0.38', + }, + ABSTRACT => "A minimal-effort oriented web application framework", + test => {TESTS => join( ' ', glob( 't/*.t' ))}, +);