demand Module::Install 0.75
[gitmo/MooseX-Object-Pluggable.git] / Makefile.PL
CommitLineData
421e9f8d 1#! /usr/bin/perl -w
2
3# Load the Module::Install bundled in ./inc/
b085a25c 4use inc::Module::Install 0.75;
421e9f8d 5
6# Define metadata
7name 'MooseX-Object-Pluggable';
8abstract 'Add plugin support to your Moose classes via roles.';
9all_from 'lib/MooseX/Object/Pluggable.pm';
10
11# Specific dependencies
bf5e53f6 12requires 'Moose' => 0.35;
208f7b27 13requires 'Module::Pluggable::Object' => 0;
421e9f8d 14
15build_requires 'Test::More' => 0;
16
17#no_index directory => 'dist';
18
19auto_install;
20WriteAll;