removed trailing spaces and added more examples on the RECORD file
This commit is contained in:
parent
0db50c5cd6
commit
b9d8c8e817
15
pep-0376.txt
15
pep-0376.txt
|
@ -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
|
||||
===================================================
|
||||
|
||||
|
|
Loading…
Reference in New Issue