Remove packaging from the standard library.

Distutils2 will live on on PyPI and be included in the stdlib when it
is ready.  See discussion starting at
http://mail.python.org/pipermail/python-dev/2012-June/120430.html
This commit is contained in:
Éric Araujo 2012-06-24 00:07:41 -04:00
parent dc44f55cc9
commit 859aad6a36
246 changed files with 35 additions and 38866 deletions

View file

@ -528,8 +528,8 @@ These environment variables influence Python's behavior.
Defines the :data:`user base directory <site.USER_BASE>`, which is used to
compute the path of the :data:`user site-packages directory <site.USER_SITE>`
and :ref:`Packaging installation paths <packaging-alt-install-user>` for
``pysetup run install_dist --user``.
and :ref:`Distutils installation paths <inst-alt-install-user>` for
``python setup.py install --user``.
.. seealso::

View file

@ -16,8 +16,7 @@ directories that don't exist already) and places a ``pyvenv.cfg`` file
in it with a ``home`` key pointing to the Python installation the
command was run from. It also creates a ``bin`` (or ``Scripts`` on
Windows) subdirectory containing a copy of the ``python`` binary (or
binaries, in the case of Windows) and the ``pysetup3`` script (to
facilitate easy installation of packages from PyPI into the new virtualenv).
binaries, in the case of Windows).
It also creates an (initially empty) ``lib/pythonX.Y/site-packages``
subdirectory (on Windows, this is ``Lib\site-packages``).