removed trailing spaces and added more examples on the RECORD file

This commit is contained in:
Tarek Ziadé 2010-03-25 09:43:50 +00:00
parent 0db50c5cd6
commit b9d8c8e817
1 changed files with 42 additions and 27 deletions

View File

@ -301,6 +301,21 @@ Notice that:
- `docutils` and `docutils-0.5-py2.6.egg-info` are located in `site-packages` so the file
paths are relative to it.
Example 2
---------
If a project has files installed elswhere than under the Python installation
root, they are added in the RECORD file as full paths. For example a project
that installs a `config.ini` file in `/etc/myapp` will be added like this::
/etc/myapp/config.ini,b690274f621402dda63bf11ba5373bf2,9544
For a windows platform, the drive letter is added for the absolute paths,
so a file that is copied in `c:\MyApp\` will be::
c:\etc\myapp\config.ini,b690274f621402dda63bf11ba5373bf2,9544
Adding an INSTALLER file in the .egg-info directory
===================================================