~ubuntu-branches/ubuntu/trusty/python3.4/trusty-proposed

« back to all changes in this revision

Viewing changes to Doc/library/distutils.rst

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2013-11-25 09:44:27 UTC
  • Revision ID: package-import@ubuntu.com-20131125094427-lzxj8ap5w01lmo7f
Tags: upstream-3.4~b1
ImportĀ upstreamĀ versionĀ 3.4~b1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
:mod:`distutils` --- Building and installing Python modules
 
2
===========================================================
 
3
 
 
4
.. module:: distutils
 
5
   :synopsis: Support for building and installing Python modules into an
 
6
              existing Python installation.
 
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
 
 
15
 
 
16
User documentation and API reference are provided in another document:
 
17
 
 
18
.. seealso::
 
19
 
 
20
   :ref:`distutils-index`
 
21
      The manual for developers and packagers of Python modules.  This describes
 
22
      how to prepare :mod:`distutils`\ -based packages so that they may be
 
23
      easily installed into an existing Python installation.  It also contains
 
24
      instructions for end-users wanting to install a distutils-based package,
 
25
      :ref:`install-index`.