move use_ext before the extra args
[gitmo/MooseX-SimpleConfig.git] / Makefile.PL
CommitLineData
33defd43 1# Load the Module::Install bundled in ./inc/
1adf927f 2use inc::Module::Install 0.75;
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
14system("pod2text lib/MooseX/SimpleConfig.pm >README") if -e 'MANIFEST.SKIP';
15
16auto_provides;
17auto_install;
18WriteAll;