NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
install_requires (Score:1)
What is difference between 'install_requires' and 'configure_requires'? Isn't 'configure_requires', 'test_requires' and 'requires' enough to represent all possible dependencies?
Reply to This
Re: (Score:1)
No. The kinds of dependencies you list are determined dynamically by executing
Makefile.PLorBuild.PL. The meaning ofconfigure_requiresis that this is what’s required to successfully runMakefile.PLorBuild.PLin the first place. In other words, without theconfigure_requiresdependency installed you cannot even determine the rest of them.