summaryrefslogtreecommitdiff
path: root/docs/deprecated/distutils/index.rst
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2020-10-18 13:26:05 -0400
committerJason R. Coombs <jaraco@jaraco.com>2020-10-18 13:26:05 -0400
commit109bde8883ed07092443ae51fe1f5fe732300a13 (patch)
treecbb9dd24ee59270611bc49b65c4a453ba19da701 /docs/deprecated/distutils/index.rst
parent466219b7772060903654bd6e1e3047569aeacf60 (diff)
downloadpython-setuptools-git-109bde8883ed07092443ae51fe1f5fe732300a13.tar.gz
Move distutils docs into 'deprecated' section and link them from that section.
Diffstat (limited to 'docs/deprecated/distutils/index.rst')
-rw-r--r--docs/deprecated/distutils/index.rst42
1 files changed, 42 insertions, 0 deletions
diff --git a/docs/deprecated/distutils/index.rst b/docs/deprecated/distutils/index.rst
new file mode 100644
index 00000000..1f72a255
--- /dev/null
+++ b/docs/deprecated/distutils/index.rst
@@ -0,0 +1,42 @@
+.. _distutils-index:
+
+##############################################
+ Distributing Python Modules (Legacy version)
+##############################################
+
+:Authors: Greg Ward, Anthony Baxter
+:Email: distutils-sig@python.org
+
+.. seealso::
+
+ :ref:`distributing-index`
+ The up to date module distribution documentations
+
+.. include:: ./_setuptools_disclaimer.rst
+
+.. note::
+
+ This guide only covers the basic tools for building and distributing
+ extensions that are provided as part of this version of Python. Third party
+ tools offer easier to use and more secure alternatives. Refer to the `quick
+ recommendations section <https://packaging.python.org/guides/tool-recommendations/>`__
+ in the Python Packaging User Guide for more information.
+
+This document describes the Python Distribution Utilities ("Distutils") from
+the module developer's point of view, describing the underlying capabilities
+that ``setuptools`` builds on to allow Python developers to make Python modules
+and extensions readily available to a wider audience.
+
+.. toctree::
+ :maxdepth: 2
+ :numbered:
+
+ introduction.rst
+ setupscript.rst
+ configfile.rst
+ sourcedist.rst
+ builtdist.rst
+ examples.rst
+ extending.rst
+ commandref.rst
+ apiref.rst