Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1 | :mod:`distutils` --- Building and installing Python modules |
| 2 | =========================================================== |
| 3 | |
| 4 | .. module:: distutils |
Georg Brandl | 71515ca | 2009-05-17 12:29:12 +0000 | [diff] [blame] | 5 | :synopsis: Support for building and installing Python modules into an |
| 6 | existing Python installation. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 7 | .. sectionauthor:: Fred L. Drake, Jr. <fdrake@acm.org> |
| 8 | |
| 9 | |
| 10 | The :mod:`distutils` package provides support for building and installing |
| 11 | additional modules into a Python installation. The new modules may be either |
| 12 | 100%-pure Python, or may be extension modules written in C, or may be |
| 13 | collections of Python packages which include modules coded in both Python and C. |
| 14 | |
Éric Araujo | 55729fe | 2011-06-02 15:45:25 +0200 | [diff] [blame^] | 15 | .. deprecated:: 3.3 |
| 16 | :mod:`packaging` replaces Distutils. See :ref:`packaging-index` and |
| 17 | :ref:`packaging-install-index`. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 18 | |
| 19 | |
Éric Araujo | 55729fe | 2011-06-02 15:45:25 +0200 | [diff] [blame^] | 20 | User documentation and API reference are provided in another document: |
| 21 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 22 | .. seealso:: |
| 23 | |
| 24 | :ref:`distutils-index` |
Georg Brandl | 71515ca | 2009-05-17 12:29:12 +0000 | [diff] [blame] | 25 | The manual for developers and packagers of Python modules. This describes |
| 26 | how to prepare :mod:`distutils`\ -based packages so that they may be |
Éric Araujo | 55729fe | 2011-06-02 15:45:25 +0200 | [diff] [blame^] | 27 | easily installed into an existing Python installation. If also contains |
| 28 | instructions for end-users wanting to install a distutils-based package, |
| 29 | :ref:`install-index`. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 30 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 31 | |
Éric Araujo | 55729fe | 2011-06-02 15:45:25 +0200 | [diff] [blame^] | 32 | .. trick to silence a Sphinx warning |
Éric Araujo | 3a9f58f | 2011-06-01 20:42:49 +0200 | [diff] [blame] | 33 | |
| 34 | .. toctree:: |
| 35 | :hidden: |
| 36 | |
| 37 | ../distutils/index |