The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use warnings;
use inc::Module::Install;
use Module::Install::AuthorRequires;
use Module::Install::AuthorTests;

name 'MooseX-MetaDescription';
all_from 'lib/MooseX/MetaDescription.pm';
license 'perl';

# prereqs
requires 'Moose' => 0.40;

# things the tests need
build_requires 'Test::More' => '0.62';
build_requires 'Test::Exception';

author_requires 'Test::Pod' => '1.14';
author_requires 'Test::Pod::Coverage';

tests('t/*.t');
author_tests 't-author';

WriteAll();