Yurttas/PL/SL/python/docs/core-python-programming/doc/16/dist/distutils-term.html

Revision as of 18:56, 7 November 2013 by MassBot1 (talk | contribs) (Created page with "<div class="navigation"> {| width="100%" cellspacing="2" align="center" | yurttas/PL/SL/python/docs/core-python-programming/doc/16/dist/setup-script.html|[[Image:yurtta...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)


2.3 Distutils-specific terminology

The following terms apply more specifically to the domain of distributing Python modules using the Distutils:

module distribution
a collection of Python modules distributed together as a single downloadable resource and meant to be installed en masse. Examples of some well-known module distributions are Numeric Python, PyXML, PIL (the Python Imaging Library), or mxDateTime. (This would be called a package, except that term is already taken in the Python context: a single module distribution may contain zero, one, or many Python packages.)
pure module distribution
a module distribution that contains only pure Python modules and packages. Sometimes referred to as a ``pure distribution.''
non-pure module distribution
a module distribution that contains at least one extension module. Sometimes referred to as a ``non-pure distribution.''
distribution root
the top-level directory of your source tree (or source distribution); the directory where setup.py exists and is run from

See About this document... for information on suggesting changes.