Bump to 0.56
[gitmo/Moose.git] / Makefile.PL
CommitLineData
db90f764 1use strict;
2use warnings;
47b19570 3use inc::Module::Install;
db90f764 4
5name 'Moose';
6all_from 'lib/Moose.pm';
7license 'perl';
8
9# Scalar::Util 1.18 doesn't work on Windows
10my $win32 = !! ( $^O eq 'Win32' or $^O eq 'cygwin' );
11
12# prereqs
13requires 'Scalar::Util' => $win32 ? '1.17' : '1.18';
14requires 'Carp';
59ab4a2e 15requires 'Class::MOP' => '0.64';
db90f764 16requires 'Sub::Exporter' => '0.972';
25374f01 17
18# only used by oose.pm, not Moose.pm :P
19requires 'Filter::Simple' => '0';
db90f764 20
21# things the tests need
1edfdf1c 22build_requires 'Test::More' => '0.62';
db90f764 23build_requires 'Test::Exception' => '0.21';
24build_requires 'Test::LongString';
25
29772efc 26tests_recursive;
27
28auto_install;
db90f764 29
30WriteAll();
31