Initial commit of MooseX::Singleton and MooseX::Service
[gitmo/MooseX-Singleton.git] / Build.PL
1 #!/usr/bin/env perl
2
3 use Module::Build;
4
5 use strict;
6 use warnings;
7
8 Module::Build->new (
9   module_name => 'MooseX::Singleton',
10   license => 'perl',
11   requires => {
12     'Moose' => '0.20',
13   },
14   build_requires => {
15     'Test::More' => '0.70',
16     'Test::Exception' => '0.25',
17   },
18 )->create_build_script;
19