Lines Matching +full:pure +full:- +full:c
1 .. _distutils-intro:
12 :ref:`install-index` chapter.
15 .. _distutils-concepts:
21 users/administrators installing third-party modules. As a developer, your
22 responsibilities (apart from writing solid, well-documented and well-tested
46 .. _distutils-simple-example:
54 Unlike, say, Autoconf-style configure scripts, the setup script may be run
73 version number) and information about what's in the package (a list of pure
80 name, email address and a URL for the project (see section :ref:`setup-script`
89 For Windows, open a command prompt window (:menuselection:`Start -->
96 The archive file will be named :file:`foo-1.0.tar.gz` (or :file:`.zip`), and
97 will unpack into a directory :file:`foo-1.0`.
99 If an end-user wishes to install your :mod:`foo` module, all they have to do is
100 download :file:`foo-1.0.tar.gz` (or :file:`.zip`), unpack it, and---from the
101 :file:`foo-1.0` directory---run ::
106 third-party modules in their Python installation.
117 (:command:`bdist_pkgtool`), and HP-UX :program:`swinstall`
119 file called :file:`foo-1.0.noarch.rpm`::
124 this has to be run on an RPM-based system such as Red Hat Linux, SuSE Linux, or
130 python setup.py bdist --help-formats
133 .. _python-terms:
145 other code. Three types of modules concern us here: pure Python modules,
148 pure Python module
151 "pure module."
154 a module written in the low-level language of the Python implementation: C/C++
156 loadable pre-compiled file, e.g. a shared object (:file:`.so`) file for Python
159 currently, the Distutils only handles C/C++ extensions for Python.)
170 small, standalone third-party modules that don't belong to a larger module
176 .. _distutils-term:
178 Distutils-specific terminology
186 resource and meant to be installed *en masse*. Examples of some well-known
192 pure module distribution
193 a module distribution that contains only pure Python modules and packages.
194 Sometimes referred to as a "pure distribution."
196 non-pure module distribution
198 referred to as a "non-pure distribution."
201 the top-level directory of your source tree (or source distribution); the