make this module work with Moose 1.99 (and still work with 1.2x)
[gitmo/MooseX-Singleton.git] / Makefile.PL
1 use strict;
2 use warnings;
3 use inc::Module::Install;
4
5 name 'MooseX-Singleton';
6 all_from 'lib/MooseX/Singleton.pm';
7
8 requires 'Moose' => '1.10';
9 requires 'Scalar::Util';
10
11 test_requires 'Test::More' => '0.88';
12 test_requires 'Test::Fatal';
13 test_requires 'Test::Requires';
14
15 license 'Perl';
16
17 extra_tests();
18
19 WriteAll();