Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1 | .. _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 | |
| 12 | This document describes the Python Distribution Utilities ("Distutils") from |
| 13 | the module developer's point of view, describing how to use the Distutils to |
| 14 | make Python modules and extensions easily available to a wider audience with |
| 15 | very little overhead for build/release/install mechanics. |
| 16 | |
Éric Araujo | 55729fe | 2011-06-02 15:45:25 +0200 | [diff] [blame] | 17 | .. deprecated:: 3.3 |
| 18 | :mod:`packaging` replaces Distutils. See :ref:`packaging-index` and |
| 19 | :ref:`packaging-install-index`. |
| 20 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 21 | .. toctree:: |
| 22 | :maxdepth: 2 |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 23 | |
| 24 | introduction.rst |
| 25 | setupscript.rst |
| 26 | configfile.rst |
| 27 | sourcedist.rst |
| 28 | builtdist.rst |
| 29 | packageindex.rst |
| 30 | uploading.rst |
| 31 | examples.rst |
| 32 | extending.rst |
| 33 | commandref.rst |
| 34 | apiref.rst |
Éric Araujo | 3a9f58f | 2011-06-01 20:42:49 +0200 | [diff] [blame] | 35 | |
| 36 | Another document describes how to install modules and extensions packaged |
| 37 | following the above guidelines: |
| 38 | |
| 39 | .. toctree:: |
| 40 | |
| 41 | install.rst |