blob: 11a29493a5ad70cfd5ad3dbd60786b99ee468d83 [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001:mod:`distutils` --- Building and installing Python modules
2===========================================================
3
4.. module:: distutils
Georg Brandl71515ca2009-05-17 12:29:12 +00005 :synopsis: Support for building and installing Python modules into an
6 existing Python installation.
Georg Brandl116aa622007-08-15 14:28:22 +00007.. sectionauthor:: Fred L. Drake, Jr. <fdrake@acm.org>
8
9
10The :mod:`distutils` package provides support for building and installing
11additional modules into a Python installation. The new modules may be either
12100%-pure Python, or may be extension modules written in C, or may be
13collections of Python packages which include modules coded in both Python and C.
14
Georg Brandl116aa622007-08-15 14:28:22 +000015
Éric Araujo55729fe2011-06-02 15:45:25 +020016User documentation and API reference are provided in another document:
17
Georg Brandl116aa622007-08-15 14:28:22 +000018.. seealso::
19
20 :ref:`distutils-index`
Georg Brandl71515ca2009-05-17 12:29:12 +000021 The manual for developers and packagers of Python modules. This describes
22 how to prepare :mod:`distutils`\ -based packages so that they may be
Éric Araujo55729fe2011-06-02 15:45:25 +020023 easily installed into an existing Python installation. If also contains
24 instructions for end-users wanting to install a distutils-based package,
25 :ref:`install-index`.