Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 2d8e1e4f077f5f6261257426bc10231793206408 authored by Larry Hastings on 26 January 2014, 08:48:23 UTC
Version bump for 3.4.0b3.
Tip revision: 2d8e1e4
index.rst
.. _distutils-index:

###############################
  Distributing Python Modules
###############################

:Authors: Greg Ward, Anthony Baxter
:Email: distutils-sig@python.org

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://python-packaging-user-guide.readthedocs.org/en/latest/current.html>`__
   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
back to top