python-peps/pep-0376.txt

625 lines
22 KiB
Plaintext
Raw Normal View History

PEP: 376
Title: Changing the .egg-info structure
2009-02-22 17:42:22 -05:00
Version: $Revision$
Last-Modified: $Date$
Author: Tarek Ziadé <tarek@ziade.org>
Status: Draft
Type: Standards Track
Content-Type: text/x-rst
Created: 22-Feb-2009
2009-05-14 18:03:08 -04:00
Python-Version: 2.7, 3.2
Post-History:
Abstract
========
This PEP proposes various enhancements for Distutils:
2009-02-22 17:42:22 -05:00
- A new format for the .egg-info structure.
- Some APIs to read the meta-data of a distribution.
- A replacement PEP 262.
- An uninstall feature.
Definitions
===========
2009-06-23 04:50:10 -04:00
A **distribution** is a collection of files, which can be Python modules,
extensions, or data. A distribution is managed by a special module called
2009-06-22 09:06:55 -04:00
`setup.py` which contains a call to the `distutils.core.setup` function.
2009-06-23 04:50:10 -04:00
The arguments passed to that function describe the distribution, like
2009-06-22 09:06:55 -04:00
its `name`, its `version`, and so on.
Disutils provides, among other things, **commands** that can be called
through the shell using the `setup.py` script. An `sdist` command is provided
for instance to create a source distribution archive. An `install` command
is also provided to perform an installation of the distribution in the Python
2009-06-22 09:06:55 -04:00
installation the script is invoked with::
$ python setup.py install
See the Distutils [#distutils]_ documentation for more information.
2009-05-16 12:02:06 -04:00
Once installed, the elements are located in various places in the system, like:
- In Python's site-packages (Python modules, Python modules organized into
2009-06-22 09:06:55 -04:00
packages, Extensions, etc.)
- In Python's `include` directory.
- In Python's `bin` or `Script` directory.
- Etc.
Rationale
=========
2009-06-23 04:50:10 -04:00
There are two problems right now in the way distributions are installed in
2009-06-22 09:06:55 -04:00
Python:
2009-05-16 12:02:06 -04:00
- There are too many ways to do it.
2009-06-22 09:06:55 -04:00
- There is no API to get the metadata of installed distributions.
2009-06-22 09:06:55 -04:00
How distributions are installed
-------------------------------
Right now, when a distribution is installed in Python, the elements it
contains are installed in various directories.
2009-05-16 12:02:06 -04:00
The pure Python code, for instance, is installed in the `purelib` directory
which is located in the Python installation at ``lib/python2.6/site-packages``
for example under Unix-like systems or Mac OS X, and in ``Lib\site-packages``
2009-05-16 12:02:06 -04:00
under Windows. This is done with the Distutils `install` command, which calls
various subcommands.
The `install_egg_info` subcommand is called during this process in order to
2009-05-16 12:02:06 -04:00
create an `.egg-info` file in the `purelib` directory.
2009-06-23 04:50:10 -04:00
For example, for the `docutils` distribution, which contains one package an
extra module and executable scripts, three elements are installed in
`site-packages`:
- `docutils`: The ``docutils`` package.
- `roman.py`: An extra module used by `docutils`.
- `docutils-0.5-py2.6.egg-info`: A file containing the distribution metadata
as described in PEP 314 [#pep314]_. This file corresponds to the file
called `PKG-INFO`, built by the `sdist` command.
Some executable scripts, such as `rst2html.py`, are also be added in the
`bin` directory of the Python installation.
Another project called `setuptools` [#setuptools]_ has two other formats
to install distributions, called `EggFormats` [#eggformats]_:
- a self-contained `.egg` directory, that contains all the distribution files
and the distribution metadata in a file called `PKG-INFO` in a subdirectory
called `EGG-INFO`. `setuptools` creates other fils in that directory that can
be considered as complementary metadata.
- a `.egg-info` directory installed in `site-packages`, that contains the same
files `EGG-INFO` has in the `.egg` format.
The first format is automatically used when you install a distribution that
uses the ``setuptools.setup`` function in its setup.py file, instead of
the ``distutils.core.setup`` one.
The `setuptools` project also provides an executable script called
`easy_install` [#easyinstall]_ that installs all distributions, including
distutils-based ones in self-contained `.egg` directories.
If you want to have a standalone `.egg.info` directory distributions, e.g.
the second `setuptools` format, you have to force it when you work
with a setuptools-based distribution or with the `easy_install` script.
You can force it by using the `-single-version-externally-managed` option
**or** the `--root` option.
This option is used by :
- the `pip` [#pip]_ installer
- the Fedora packagers [#fedora]_.
- the Debian packagers [#debian]_.
Uninstall information
---------------------
Distutils doesn't provide an `uninstall` command. If you want to uninstall
2009-06-23 04:50:10 -04:00
a distribution, you have to be a power user and remove the various elements
that were installed, and then look over the `.pth` file to clean them if
necessary.
2009-05-16 12:02:06 -04:00
And the process differs depending on the tools you have used to install the
distribution and if the distribution's `setup.py` uses Distutils or
2009-06-22 09:06:55 -04:00
Setuptools.
Under some circumstances, you might not be able to know for sure that you
2009-06-22 09:06:55 -04:00
have removed everything, or that you didn't break another distribution by
removing a file that is shared among several distributions.
But there's a common behavior: when you install a distribution, files are
copied in your system. And it's possible to keep track of these files for
later removal.
What this PEP proposes
----------------------
To address those issues, this PEP proposes a few changes:
- A new `.egg-info` structure using a directory, based on one format of
the `EggFormats` standard from `setuptools`.
- New APIs in `pkgutil` to be able to query the information of installed
2009-06-22 09:06:55 -04:00
distributions.
- A de-facto replacement for PEP 262
2009-07-01 05:04:12 -04:00
- An uninstall function and an uninstall script in Distutils.
.egg-info becomes a directory
=============================
As explained earlier, the `EggFormats` standard from `setuptools` proposes two
formats to install the metadata information of a distribution:
2009-06-08 05:54:02 -04:00
- A self-contained directory that can be zipped or left unzipped and contains
2009-07-01 09:15:40 -04:00
the distribution files *and* an `.egg-info` directory containing the
metadata.
- A distinct `.egg-info` directory located in the site-packages directory,
with the metadata inside.
2009-06-08 05:54:02 -04:00
2009-07-01 09:15:40 -04:00
This PEP proposes to keep just one format and make it the standard way to
install the metadata of a distribution : a distinct `.egg-info` directory
located in the site-packages directory, containing the metadata.
2009-06-08 05:54:02 -04:00
This `.egg-info` directory contains a `PKG-INFO` file built by the
2009-07-01 09:15:40 -04:00
`write_pkg_file` method of the `Distribution` class in Distutils.
This change is not impacting Python itself because the metadata files are not
used anywhere yet in the standard library besides Distutils.
However, it is impacting the `setuptools` and `pip` projects, but given
the fact that they already work with a directory that contains a `PKG-INFO`
2009-07-01 09:15:40 -04:00
file, the change will have no deep consequences. That said, packages installed
other existing pre-standardisation formats are ignored by the new
2009-07-01 09:15:40 -04:00
system, as explained in the backward compatibility section of this document.
2009-07-01 09:15:40 -04:00
Let's take an example of the new format with the `docutils` distribution.
The elements installed in `site-packages` are::
- docutils/
2009-06-23 04:50:10 -04:00
- roman.py
- docutils-0.5-py2.6.egg-info/
PKG-INFO
The syntax of the egg-info directory name is as follows::
name + '-' + version + '.egg-info'
The egg-info directory name is created using a new function called
2009-06-12 06:00:17 -04:00
``egginfo_dirname(name, version)`` added to ``pkgutil``. ``name`` is
converted to a standard distribution name by replacing any runs of
non-alphanumeric characters with a single '-'. ``version`` is converted
to a standard version string. Spaces become dots, and all other
non-alphanumeric characters (except dots) become dashes, with runs of
multiple dashes condensed to a single dash. Both attributes are then
converted into their filename-escaped form, i.e. any '-' characters are
2009-07-01 09:15:40 -04:00
replaced with '_' other than the one in 'egg-info' and the one
separating the name from the version number.
Examples::
2009-06-23 04:50:10 -04:00
>>> egginfo_dirname('docutils', '0.5')
'docutils-0.5.egg-info'
2009-06-12 06:00:17 -04:00
>>> egginfo_dirname('python-ldap', '2.5')
'python_ldap-2.5.egg-info'
2009-06-12 06:00:17 -04:00
>>> egginfo_dirname('python-ldap', '2.5 a---5')
'python_ldap-2.5.a_5.egg-info'
Adding a RECORD file in the .egg-info directory
===============================================
A `RECORD` file is added inside the `.egg-info` directory at installation
time when installing a source distribution using the `install` command.
Notice that when installing a binary distribution created with `bdist` command
or a `bdist`-based command, the `RECORD` file will be installed as well since
these commands use the `install` command to create a binary distributions.
The `RECORD` file holds the list of installed files. These correspond
to the files listed by the `record` option of the `install` command, and will
be generated by default. This allows the implementation of an uninstallation
feature, as explained later in this PEP. The `install` command also provides
an option to prevent the `RECORD` file from being written and this option
should be used when creating system packages.
Third-party installation tools also should not overwrite or delete files
that are not in a RECORD file without prompting or warning.
This RECORD file is inspired from PEP 262 FILES [#pep262]_.
2009-05-16 12:02:06 -04:00
The RECORD format
-----------------
2009-06-08 05:54:02 -04:00
The `RECORD` file is a CSV file, composed of records, one line per
installed file. The ``csv`` module is used to read the file, with
these options:
2009-06-08 05:54:02 -04:00
- field delimiter : `,`
- quoting char : `"`.
- line terminator : ``os.linesep`` (so ``\r\n`` or ``\n``)
2009-06-08 05:54:02 -04:00
Each record is composed of three elements.
2009-05-16 12:02:06 -04:00
- the file's full **path**
2009-06-23 04:50:10 -04:00
- if the installed file is located in the directory where the `.egg-info`
directory of the package is located, it's a '/'-separated relative
path, no matter what the target system is. This makes this information
cross-compatible and allows simple installations to be relocatable.
- if the installed file is located under ``sys.prefix`` or
`sys.exec_prefix``, it's a it's a '/'-separated relative path prefixed
by the `$PREFIX` or the `$EXEC_PREFIX` string. The `install` command
decides which prefix to use depending on the files. For instance if
it's an executable script defined in the `scripts` option of the
setup script, `$EXEC_PREFIX` will be used. If `install` doesn't know
which prefix to use, `$PREFIX` is preferred.
2009-05-16 12:02:06 -04:00
- the **MD5** hash of the file, encoded in hex. Notice that `pyc` and `pyo`
generated files don't have any hash because they are automatically produced
2009-06-23 04:50:10 -04:00
from `py` files. So checking the hash of the corresponding `py` file is
enough to decide if the file and its associated `pyc` or `pyo` files have
changed.
2009-05-16 12:02:06 -04:00
- the file's size in bytes
The ``csv`` module is used to generate this file, so the field separator is
",". Any "," characters found within a field is escaped automatically by ``csv``.
When the file is read, the `U` option is used so the universal newline
support (see PEP 278 [#pep278]_) is activated, avoiding any trouble
2009-06-23 04:50:10 -04:00
reading a file produced on a platform that uses a different new line
terminator.
2009-05-16 12:02:06 -04:00
Example
-------
Back to our `docutils` example, we now have::
- docutils/
- roman.py
- docutils-0.5-py2.6.egg-info/
PKG-INFO
RECORD
And the RECORD file contains (extract)::
2009-05-16 12:02:06 -04:00
docutils/__init__.py,b690274f621402dda63bf11ba5373bf2,9544
docutils/core.py,9c4b84aff68aa55f2e9bf70481b94333,66188
roman.py,a4b84aff68aa55f2e9bf70481b943D3,234
$EXEC_PREFIX/bin/rst2html.py,a4b84aff68aa55f2e9bf70481b943D3,234
docutils-0.5-py2.6.egg-info/PKG-INFO,6fe57de576d749536082d8e205b77748,195
docutils-0.5-py2.6.egg-info/RECORD
2009-05-16 12:02:06 -04:00
Notice that:
- the `RECORD` file can't contain a hash of itself and is just mentioned here
- `docutils` and `docutils-0.5-py2.6.egg-info` are located in `site-packages` so the file
2009-05-16 12:02:06 -04:00
paths are relative to it.
Adding an INSTALLER file in the .egg-info directory
===================================================
The `install` command has a new option called `installer`. This option
is the name of the tool used to invoke the installation. It's an normalized
2009-06-12 06:00:17 -04:00
lower-case string matching `[a-z0-9_\-\.]`.
$ python setup.py install --installer=pkg-system
It defaults to `distutils` if not provided.
2009-06-22 09:06:55 -04:00
When a distribution is installed, the INSTALLER file is generated in the
2009-06-12 06:00:17 -04:00
`.egg-info` directory with this value, to keep track of **who** installed the
2009-06-22 09:06:55 -04:00
distribution. The file is a single-line text file.
New APIs in pkgutil
===================
To use the `.egg-info` directory content, we need to add in the standard
library a set of APIs. The best place to put these APIs is `pkgutil`.
2009-04-13 16:52:58 -04:00
Query functions
---------------
The new functions added in the ``pkgutil`` are :
- ``get_distributions()`` -> iterator of ``Distribution`` instances.
Provides an iterator that looks for ``.egg-info`` directories in
``sys.path`` and returns ``Distribution`` instances for
each one of them.
- ``get_distribution(name)`` -> ``Distribution`` or None.
Scans all elements in ``sys.path`` and looks for all directories ending with
``.egg-info``. Returns a ``Distribution`` corresponding to the
``.egg-info`` directory that contains a PKG-INFO that matches `name`
for the `name` metadata.
Notice that there should be at most one result. The first result founded
is returned. If the directory is not found, returns None.
- ``get_file_users(path)`` -> iterator of ``Distribution`` instances.
Iterates over all distributions to find out which distributions uses ``path``.
``path`` can be a local absolute path or a relative '/'-separated path.
2009-06-12 06:00:17 -04:00
Distribution class
------------------
2009-07-02 07:45:00 -04:00
A new class called ``Distribution`` is created with the path of the
`.egg-info` directory provided to the constructor. It reads the metadata
2009-06-12 06:00:17 -04:00
contained in `PKG-INFO` when it is instanciated.
``Distribution(path)`` -> instance
Creates a ``Distribution`` instance for the given ``path``.
2009-06-12 06:00:17 -04:00
``Distribution`` provides the following attributes:
2009-05-19 08:43:34 -04:00
2009-06-12 06:00:17 -04:00
- ``name``: The name of the distribution.
2009-06-12 06:00:17 -04:00
- ``metadata``: A ``DistributionMetadata`` instance loaded with the
distribution's PKG-INFO file.
And following methods:
- ``get_installed_files(local=False)`` -> iterator of (path, md5, size)
Iterates over the `RECORD` entries and return a tuple ``(path, md5, size)``
for each line. If ``local`` is ``True``, the path is transformed into a
local absolute path. Otherwise the raw value from `RECORD` is returned.
2009-07-01 09:15:40 -04:00
A local absolute path is an absolute path in which occurrences of '/'
have been replaced by the system separator given by ``os.sep``.
- ``uses(path)`` -> Boolean
Returns ``True`` if ``path`` is listed in `RECORD`. ``path``
can be a local absolute path or a relative '/'-separated path.
2009-05-19 08:43:34 -04:00
2009-06-12 06:00:17 -04:00
- ``get_egginfo_file(path, binary=False)`` -> file object
2009-06-08 05:54:02 -04:00
Returns a file located under the `.egg-info` directory.
Returns a ``file`` instance for the file pointed by ``path``.
``path`` has to be a '/'-separated path relative to the `.egg-info`
2009-06-08 05:54:02 -04:00
directory or an absolute path.
2009-06-12 06:00:17 -04:00
If ``path`` is an absolute path and doesn't start with the `.egg-info`
2009-06-08 05:54:02 -04:00
directory path, a ``DistutilsError`` is raised.
If ``binary`` is ``True``, opens the file in read-only binary mode (`rb`),
otherwise opens it in read-only mode (`r`).
2009-06-08 05:54:02 -04:00
2009-06-12 06:00:17 -04:00
- ``get_egginfo_files(local=False)`` -> iterator of paths
2009-06-08 05:54:02 -04:00
Iterates over the `RECORD` entries and return paths for each line if the path
is pointing a file located in the `.egg-info` directory or one of its
subdirectory.
If ``local`` is ``True``, each path is transformed into a
local absolute path. Otherwise the raw value from `RECORD` is returned.
Notice that the API is organized in five classes that work with directories
and Zip files (so it works with files included in Zip files, see PEP 273 for
more details [#pep273]_). These classes are described in the documentation
of the prototype implementation for interested readers [#prototype]_.
Usage example
-------------
Let's use some of the new APIs with our `docutils` example::
2009-06-12 06:00:17 -04:00
>>> from pkgutil import get_distribution, get_file_users
>>> dist = get_distribution('docutils')
2009-06-12 06:00:17 -04:00
>>> dist.name
'docutils'
2009-06-12 06:00:17 -04:00
>>> dist.metadata.version
'0.5'
2009-06-12 06:00:17 -04:00
>>> for path, hash, size in dist.get_installed_files()::
2009-06-23 04:50:10 -04:00
... print '%s %s %d' % (path, hash, size)
2009-05-16 12:02:06 -04:00
...
docutils/__init__.py b690274f621402dda63bf11ba5373bf2 9544
docutils/core.py 9c4b84aff68aa55f2e9bf70481b94333 66188
roman.py a4b84aff68aa55f2e9bf70481b943D3 234
/usr/local/bin/rst2html.py a4b84aff68aa55f2e9bf70481b943D3 234
docutils-0.5-py2.6.egg-info/PKG-INFO 6fe57de576d749536082d8e205b77748 195
docutils-0.5-py2.6.egg-info/RECORD None None
>>> dist.uses('docutils/core.py')
True
>>> dist.uses('/usr/local/bin/rst2html.py')
True
2009-05-16 12:02:06 -04:00
2009-06-12 06:00:17 -04:00
>>> dist.get_egginfo_file('PKG-INFO')
<open file at ...>
PEP 262 replacement
===================
In the past an attempt was made to create a installation database (see PEP 262
[#pep262]_).
Extract from PEP 262 Requirements:
" We need a way to figure out what distributions, and what versions of
those distributions, are installed on a system..."
Since the APIs proposed in the current PEP provide everything needed to meet
this requirement, PEP 376 replaces PEP 262 and becomes the official
`installation database` standard.
The new version of PEP 345 (XXX work in progress) extends the Metadata
standard and fullfills the requirements described in PEP 262, like the
`REQUIRES` section.
2009-05-07 05:02:23 -04:00
Adding an Uninstall function
============================
2009-06-23 04:50:10 -04:00
Distutils already provides a very basic way to install a distribution, which
is running the `install` command over the `setup.py` script of the
2009-06-22 09:06:55 -04:00
distribution.
2009-03-28 15:08:48 -04:00
Distutils will provide a very basic ``uninstall`` function, that is added
in ``distutils.util`` and takes the name of the distribution to uninstall
2009-07-02 07:46:58 -04:00
as its argument. ``uninstall`` uses the APIs described earlier and remove all
unique files, as long as their hash didn't change. Then it removes empty
directories left behind.
2009-03-28 15:08:48 -04:00
``uninstall`` returns a list of uninstalled files::
2009-03-28 15:08:48 -04:00
>>> from distutils.util import uninstall
>>> uninstall('docutils')
['/opt/local/lib/python2.6/site-packages/docutils/core.py',
...
'/opt/local/lib/python2.6/site-packages/docutils/__init__.py']
2009-05-07 05:02:23 -04:00
If the distribution is not found, a ``DistutilsUninstallError`` is be raised.
2009-03-28 15:08:48 -04:00
Filtering
---------
To make it a reference API for third-party projects that wish to control
how `uninstall` works, a second callable argument can be used. It's
called for each file that is removed. If the callable returns `True`, the
file is removed. If it returns False, it's left alone.
2009-03-28 15:08:48 -04:00
Examples::
>>> def _remove_and_log(path):
... logging.info('Removing %s' % path)
... return True
2009-05-16 12:02:06 -04:00
...
>>> uninstall('docutils', _remove_and_log)
2009-05-07 05:02:23 -04:00
>>> def _dry_run(path):
... logging.info('Removing %s (dry run)' % path)
... return False
2009-05-16 12:02:06 -04:00
...
>>> uninstall('docutils', _dry_run)
2009-03-28 15:08:48 -04:00
Of course, a third-party tool can use ``pkgutil`` APIs to implement
2009-05-16 13:13:54 -04:00
its own uninstall feature.
2009-05-16 12:02:06 -04:00
Installer marker
----------------
As explained earlier in this PEP, the `install` command adds an `INSTALLER`
file in the `.egg-info` directory with the name of the installer.
2009-06-22 09:06:55 -04:00
To avoid removing distributions that where installed by another packaging system,
the ``uninstall`` function takes an extra argument ``installer`` which default
to ``distutils``.
When called, ``uninstall`` controls that the ``INSTALLER`` file matches
this argument. If not, it raises a ``DistutilsUninstallError``::
>>> uninstall('docutils')
Traceback (most recent call last):
...
DistutilsUninstallError: docutils was installed by 'cool-pkg-manager'
>>> uninstall('docutils', installer='cool-pkg-manager')
2009-06-12 06:00:17 -04:00
This allows a third-party application to use the ``uninstall`` function
2009-06-22 09:06:55 -04:00
and make sure it's the only program that can remove a distribution it has
previously installed. This is useful when a third-party program that relies
on Distutils APIs does extra steps on the system at installation time,
it has to undo at uninstallation time.
2009-07-01 05:04:12 -04:00
Adding an Uninstall script
==========================
An `uninstall` script is added in Distutils. and is used like this::
2009-07-01 05:04:12 -04:00
$ python -m distutils.uninstall packagename
Notice that script doesn't control if the removal of a distribution breaks
another distribution. Although it makes sure that all the files it removes
2009-07-01 05:04:12 -04:00
are not used by any other distribution, by using the uninstall function.
2009-05-14 05:32:29 -04:00
Backward compatibility and roadmap
==================================
These changes doesn't introduce any compatibility problems with the previous
2009-05-14 05:32:29 -04:00
version of Distutils, and will also work with existing third-party tools.
Although, a backport of the new Distutils for 2.5, 2.6, 3.0 and 3.1 is
2009-05-16 12:02:06 -04:00
provided so people can benefit from these new features.
2009-05-14 18:19:41 -04:00
2009-05-14 05:32:29 -04:00
The plan is to integrate them for Python 2.7 and Python 3.2
2009-03-28 15:08:48 -04:00
2009-05-16 12:02:06 -04:00
References
==========
.. [#distutils]
http://docs.python.org/distutils
2009-05-16 12:02:06 -04:00
.. [#pep262]
http://www.python.org/dev/peps/pep-0262
.. [#pep314]
http://www.python.org/dev/peps/pep-0314
2009-05-16 13:13:54 -04:00
.. [#setuptools]
http://peak.telecommunity.com/DevCenter/setuptools
.. [#easyinstall]
http://peak.telecommunity.com/DevCenter/EasyInstall
2009-05-16 13:13:54 -04:00
.. [#pip]
http://pypi.python.org/pypi/pip
2009-05-16 12:02:06 -04:00
.. [#eggformats]
http://peak.telecommunity.com/DevCenter/EggFormats
2009-06-22 09:06:55 -04:00
.. [#pep273]
http://www.python.org/dev/peps/pep-0273
.. [#pep278]
2009-06-23 04:50:10 -04:00
http://www.python.org/dev/peps/pep-0278
.. [#fedora]
http://fedoraproject.org/wiki/Packaging/Python/Eggs#Providing_Eggs_using_Setuptools
.. [#debian]
http://wiki.debian.org/DebianPython/NewPolicy
2009-06-23 04:50:10 -04:00
.. [#prototype]
http://bitbucket.org/tarek/pep376/
2009-03-28 15:08:48 -04:00
Aknowledgments
==============
2009-03-28 15:08:48 -04:00
Jim Fulton, Ian Bicking, Phillip Eby, and many people at Pycon and Distutils-SIG.
Copyright
=========
This document has been placed in the public domain.
..
Local Variables:
mode: indented-text
indent-tabs-mode: nil
sentence-end-double-space: t
fill-column: 70
coding: utf-8
End: