blob: 5fa25a6d58aa6456d4336262a6511f523a383811 [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001.. _distutils-index:
2
3###############################
4 Distributing Python Modules
5###############################
6
7:Authors: Greg Ward, Anthony Baxter
8:Email: distutils-sig@python.org
9:Release: |version|
10:Date: |today|
11
12This document describes the Python Distribution Utilities ("Distutils") from
13the module developer's point of view, describing how to use the Distutils to
14make Python modules and extensions easily available to a wider audience with
15very little overhead for build/release/install mechanics.
16
17.. toctree::
18 :maxdepth: 2
Benjamin Peterson5879d412009-03-30 14:51:56 +000019 :numbered:
Georg Brandl116aa622007-08-15 14:28:22 +000020
21 introduction.rst
22 setupscript.rst
23 configfile.rst
24 sourcedist.rst
25 builtdist.rst
26 packageindex.rst
27 uploading.rst
28 examples.rst
29 extending.rst
30 commandref.rst
31 apiref.rst
Éric Araujo3a9f58f2011-06-01 20:42:49 +020032
33Another document describes how to install modules and extensions packaged
34following the above guidelines:
35
36.. toctree::
37
38 install.rst
39
40
41.. seealso::
42
43 :ref:`packaging-index` and :ref:`packaging-install-index`
44 Documentation of Packaging, the new version of Distutils.