add M:I dependency to make it more clear to n00bs what modules need to be installed...
[gitmo/Moose-Autobox.git] / Makefile.PL
CommitLineData
37befc62 1use strict;
2use warnings;
f9c0fe82 3use inc::Module::Install 0.96;
4e008ee1 4use Module::Install::AutoManifest;
f9c0fe82 5use Module::Install::ExtraTests;
37befc62 6
7name('Moose-Autobox');
8all_from('lib/Moose/Autobox.pm');
9
0a73bc93 10requires 'autobox' => '2.23';
11requires 'Moose' => '0.42';
3ab2f54a 12requires 'Perl6::Junction' => '1.40000';
37befc62 13
0e480911 14test_requires 'Test::More' => '0.89';
37befc62 15test_requires 'Test::Exception' => '0.21';
16
4e008ee1 17repository 'git://git.moose.perl.org/Moose-Autobox.git';
18
5d4c84f3 19auto_manifest;
37befc62 20tests_recursive;
ca2e2c86 21extra_tests;
37befc62 22
23WriteAll;