removing the python version bit for the egg.info directory

This commit is contained in:
Tarek Ziadé 2009-03-28 18:49:24 +00:00
parent dcbd51055b
commit 6e41d873d3
1 changed files with 6 additions and 6 deletions

View File

@ -45,9 +45,9 @@ For example, if the `zlib` package is installed, two elements
will be installed in `site-packages`::
- zlib
- zlib-2.5.2-py2.6.egg-info
- zlib-2.5.2.egg-info
Where `zlib` is the package itself, and `zlib-2.5.2-py2.6.egg-info` is
Where `zlib` is the package itself, and `zlib-2.5.2.egg-info` is
a file containing the package metadata as described in PEP 314.
This file corresponds to the file called `PKG-INFO`, built by
@ -143,8 +143,9 @@ time. They will all be UPPERCASE files.
- the `RECORD` file will hold the list of installed files. These
correspond to the files listed by the `record` option of the `install`
command, and will always be generated. This will allow uninstall, as
explained later in this PEP.
explained later in this PEP.
The two files will need to use '/'-separated relative paths.
The `install` command will record by default installed files in the
RECORD file.
@ -161,13 +162,12 @@ all files located in the `.egg-info` directory::
Back to our `zlib` example, we will have::
- zlib
- zlib-2.5.2-py2.6.egg-info/
- zlib-2.5.2.egg-info/
PKG-INFO
MANIFEST
RECORD
XXX See if we want to keep the 2.5.2-py2.6 part
XXX See if we want to add Python version in the PKG-INFO
New functions in pkgutil
========================