Create egg file in python project
We can bundle python projects in different ways and then make it execute.
python egg is a structure of the project which has the project files, resources, metadata.
We the help of the egg files we can uninstall and upgrades of code.
Like Java has jars to execute, in python we egg file to execute the application code.
Egg file hold licensing details, dependencies.
If we have an egg file we can install particular software using easy_install.
- python scripts
- Egg file
- wheel file
- zip file
<setup.py path> bdist_egg
Comments
Post a Comment