Fix MANIFEST.SKIP to ignore dist artifects
[gitmo/MooseX-SimpleConfig.git] / Makefile.PL
CommitLineData
33defd43 1# Load the Module::Install bundled in ./inc/
ea0c26ee 2use inc::Module::Install 0.91;
33defd43 3
4name 'MooseX-SimpleConfig';
5all_from 'lib/MooseX/SimpleConfig.pm';
6
7test_requires 'Test::More' => '0.42';
8
a96520dd 9requires 'Moose' => '0.35';
10requires 'MooseX::ConfigFromFile' => '0.02';
11requires 'Config::Any' => '0.10';
33defd43 12
13# Rebuild README for maintainers
ea0c26ee 14system("pod2text lib/MooseX/SimpleConfig.pm >README") and die
15 if $Module::Install::AUTHOR;
33defd43 16
17auto_provides;
18auto_install;
19WriteAll;