Mojolicious application template
[MojoFacets.git] / Makefile.PL
1 #!/usr/bin/env perl
2
3 use 5.008001;
4
5 use strict;
6 use warnings;
7
8 # Son, when you participate in sporting events,
9 # it's not whether you win or lose, it's how drunk you get.
10 use ExtUtils::MakeMaker;
11
12 WriteMakefile(
13     NAME         => 'MyApp',
14     VERSION_FROM => 'lib/MyApp.pm',
15     AUTHOR       => 'A Good Programmer <nospam@cpan.org>',
16     EXE_FILES => ['script/my_app'],
17     PREREQ_PM => { 'Mojo' => '0.9003' },
18     test => {TESTS => 't/*.t t/*/*.t t/*/*/*.t'}
19 );