Initial commit of MooseX::Singleton and MooseX::Service
[gitmo/MooseX-Singleton.git] / Build.PL
CommitLineData
443f4253 1#!/usr/bin/env perl
2
3use Module::Build;
4
5use strict;
6use warnings;
7
8Module::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