added YourClass->meta->add_attribute(foo => (is => 'ro', isa => 'Str')); support.
[gitmo/Mouse.git] / Makefile.PL
CommitLineData
c3398f5b 1use inc::Module::Install;
2
3name 'Mouse';
4all_from 'lib/Mouse.pm';
5
b9add211 6tests 't/*.t t/*/*.t';
7
a0c72aef 8if ($] < 5.008004) {
9 # Scalar::Util < 1.14 has a bug.
10 # > Fixed looks_like_number(undef) to return false for perl >= 5.009002
11 requires 'Scalar::Util' => 1.14;
272a1930 12}
13
eab81545 14build_requires 'Test::Exception';
c3398f5b 15build_requires 'Test::More';
c3398f5b 16
654a7eeb 17auto_include;
74f2f839 18WriteAll;