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 |
Benjamin Peterson | 873cad2 | 2015-11-03 22:42:02 -0800 | [diff] [blame] | 18 | extensions that are provided as part of this version of Python. Third party |
| 19 | tools offer easier to use and more secure alternatives. Refer to the `quick |
| 20 | recommendations section <https://packaging.python.org/en/latest/current/>`__ |
Nick Coghlan | 73188fb | 2013-12-10 21:18:32 +1000 | [diff] [blame] | 21 | in the Python Packaging User Guide for more information. |
| 22 | |
| 23 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 24 | .. toctree:: |
| 25 | :maxdepth: 2 |
Georg Brandl | a0eea59 | 2009-03-28 19:57:36 +0000 | [diff] [blame] | 26 | :numbered: |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 27 | |
| 28 | introduction.rst |
| 29 | setupscript.rst |
| 30 | configfile.rst |
| 31 | sourcedist.rst |
| 32 | builtdist.rst |
| 33 | packageindex.rst |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 34 | examples.rst |
| 35 | extending.rst |
| 36 | commandref.rst |
| 37 | apiref.rst |