mirror of
https://github.com/python/cpython
synced 2024-11-05 18:12:54 +00:00
8f5798edfb
- "See also" links to the new docs are now provided in the legacy pages - links to setuptools documentation have been updated (original patch by Susan Sun)
41 lines
1.2 KiB
ReStructuredText
41 lines
1.2 KiB
ReStructuredText
.. _distutils-index:
|
|
|
|
##############################################
|
|
Distributing Python Modules (Legacy version)
|
|
##############################################
|
|
|
|
:Authors: Greg Ward, Anthony Baxter
|
|
:Email: distutils-sig@python.org
|
|
|
|
.. seealso::
|
|
|
|
:ref:`distributing-index`
|
|
The up to date module distribution documentations
|
|
|
|
This document describes the Python Distribution Utilities ("Distutils") from
|
|
the module developer's point of view, describing how to use the Distutils to
|
|
make Python modules and extensions easily available to a wider audience with
|
|
very little overhead for build/release/install mechanics.
|
|
|
|
.. note::
|
|
|
|
This guide only covers the basic tools for building and distributing
|
|
extensions that are provided as part of this version of Python. Third party
|
|
tools offer easier to use and more secure alternatives. Refer to the `quick
|
|
recommendations section <https://packaging.python.org/en/latest/current/>`__
|
|
in the Python Packaging User Guide for more information.
|
|
|
|
.. toctree::
|
|
:maxdepth: 2
|
|
:numbered:
|
|
|
|
introduction.rst
|
|
setupscript.rst
|
|
configfile.rst
|
|
sourcedist.rst
|
|
builtdist.rst
|
|
packageindex.rst
|
|
examples.rst
|
|
extending.rst
|
|
commandref.rst
|
|
apiref.rst
|