Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1 | .. _distutils-index: |
| 2 | |
Larry Hastings | 3732ed2 | 2014-03-15 21:13:56 -0700 | [diff] [blame] | 3 | ############################################## |
| 4 | Distributing Python Modules (Legacy version) |
| 5 | ############################################## |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 6 | |
| 7 | :Authors: Greg Ward, Anthony Baxter |
| 8 | :Email: distutils-sig@python.org |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 9 | |
| 10 | This document describes the Python Distribution Utilities ("Distutils") from |
| 11 | the module developer's point of view, describing how to use the Distutils to |
| 12 | make Python modules and extensions easily available to a wider audience with |
| 13 | very little overhead for build/release/install mechanics. |
| 14 | |
Nick Coghlan | b5c4fd0 | 2013-12-10 21:24:55 +1000 | [diff] [blame] | 15 | .. note:: |
| 16 | |
| 17 | This guide only covers the basic tools for building and distributing |
| 18 | extensions that are provided as part of this version of Python. Third |
| 19 | party tools offer easier to use and more secure alternatives. Refer to the |
| 20 | `quick recommendations section |
| 21 | <https://python-packaging-user-guide.readthedocs.org/en/latest/current.html>`__ |
| 22 | in the Python Packaging User Guide for more information. |
| 23 | |
| 24 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 25 | .. toctree:: |
| 26 | :maxdepth: 2 |
Benjamin Peterson | 5879d41 | 2009-03-30 14:51:56 +0000 | [diff] [blame] | 27 | :numbered: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 28 | |
| 29 | introduction.rst |
| 30 | setupscript.rst |
| 31 | configfile.rst |
| 32 | sourcedist.rst |
| 33 | builtdist.rst |
| 34 | packageindex.rst |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 35 | examples.rst |
| 36 | extending.rst |
| 37 | commandref.rst |
| 38 | apiref.rst |