SetupHelper: Automating Boilerplate in Python Setup Scripts
===========================================================
This Python module will make your setup scripts simpler to
write, by automating as much as possible of the 'boilerplate'
that normally goes into them. Instead of invoking the ``setup``
function with a long list of keyword arguments, you just set
global variables in your setup script and then invoke the
``setup_main function``, passing ``globals()`` as its argument.
(The SetupHelper setup.py script itself illustrates this usage.)
The helper module does all the grunt work of translating your
variables into keyword arguments, including automatically
deducing and generating many arguments so that you only ...