A python egg is a file used for distributing python projects as bundles; it is usually compressed with the zip algorithm.
If I have a module, foo, in Lib/site-packages, I can just import foo and it will work. However, when …
python module installation easy-install eggI maintain a few Python packages. I have a very similar setup.py file for each of them. However, when …
python packaging setuptools eggI have made a distribution of my python package with the following setup.py #!/usr/bin/env python from setuptools …
python distribution pip egg