I have a "standard" python package package, for example:
- setup.py - using setuptools
- Readme
- SIC / ModuleA
- test /
However, when I execute setup.py, it decides to create the src / moduleA.egg-info directory.
The question is, do I have to worry about the contents of this directory and check it with the rest of my code, or do I just rely on setuptools / distribute to restore it? It seems that all the information in the .egg-info directory comes from config to setup.py anyway.
source share