| distutils.core | index /usr/local/lib/python2.5/distutils/core.py Module Docs |
distutils.core
The only module that needs to be imported to use the Distutils; provides
the 'setup' function (which is to be called from the setup script). Also
indirectly provides the Distribution and Command classes, although they are
really defined in distutils.dist and distutils.cmd.
| Modules | ||||||
| ||||||
| Functions | ||
| ||
| Data | ||
| DEBUG = None StringTypes = (<type 'str'>, <type 'unicode'>) USAGE = 'usage: %(script)s [global_opts] cmd1 [cmd1_opts]...t)s --help-commands\n or: %(script)s cmd --help\n' __revision__ = '$Id: core.py 38672 2005-03-20 22:19:47Z fdrake $' extension_keywords = ('name', 'sources', 'include_dirs', 'define_macros', 'undef_macros', 'library_dirs', 'libraries', 'runtime_library_dirs', 'extra_objects', 'extra_compile_args', 'extra_link_args', 'swig_opts', 'export_symbols', 'depends', 'language') setup_keywords = ('distclass', 'script_name', 'script_args', 'options', 'name', 'version', 'author', 'author_email', 'maintainer', 'maintainer_email', 'url', 'license', 'description', 'long_description', 'keywords', 'platforms', 'classifiers', 'download_url', 'requires', 'provides', ...) | ||