fill in PREREQ_PM
[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         => 'MojoFacets',
14     VERSION_FROM => 'lib/MojoFacets.pm',
15     AUTHOR       => 'Dobrica Pavlinusic <dpavlin@rot13.org>',
16     EXE_FILES => ['script/mojo_facets'],
17     PREREQ_PM => {
18                 'Mojo' => '0.9003',
19                 'Data::Dump' => 0,
20                 'File::Slurp' => 0,
21                 'JSON' => 0,
22         },
23     test => {TESTS => 't/*.t t/*/*.t t/*/*/*.t'}
24 );