fixing makefile error
[gitmo/MooseX-MetaDescription.git] / Makefile.PL
CommitLineData
003eeeb9 1use strict;
2use warnings;
3use inc::Module::Install;
4
f1c9e103 5name 'MooseX-MetaDescription';
003eeeb9 6all_from 'lib/MooseX/MetaDescription.pm';
7license 'perl';
8
9# prereqs
10requires 'Moose' => 0.40;
11
12# things the tests need
f1c9e103 13build_requires 'Test::More' => '0.62';
003eeeb9 14
15tests('t/*.t');
16
17WriteAll();
18