Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +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 |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +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 | 73188fb | 2013-12-10 21:18:32 +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 | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 25 | .. toctree:: |
| 26 | :maxdepth: 2 |
Georg Brandl | a0eea59 | 2009-03-28 19:57:36 +0000 | [diff] [blame] | 27 | :numbered: |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 28 | |
| 29 | introduction.rst |
| 30 | setupscript.rst |
| 31 | configfile.rst |
| 32 | sourcedist.rst |
| 33 | builtdist.rst |
| 34 | packageindex.rst |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 35 | examples.rst |
| 36 | extending.rst |
| 37 | commandref.rst |
| 38 | apiref.rst |