bump Moose and MI versions
[gitmo/MooseX-AutoDoc.git] / Makefile.PL
CommitLineData
3890b670 1#! /usr/bin/perl -w
2
3# Load the Module::Install bundled in ./inc/
17e3235c 4use inc::Module::Install 0.91;
3890b670 5
6# Define metadata
7name 'MooseX-AutoDoc';
8abstract 'Automatically generate documentation stubs for Moose-based classes.';
9all_from 'lib/MooseX/AutoDoc.pm';
10
11# Specific dependencies
17e3235c 12requires 'Moose' => '0.89';
3890b670 13requires 'Template'; #version TBD
14
15build_requires 'Test::More' => 0;
16
17auto_install;
18WriteAll;