Search code examples
pythondeploymentegg

How do I turn a python program into an .egg file?


How do I turn a python program into an .egg file?


Solution

  • Setuptools is the software that creates .egg files. It's an extension of the distutils package in the standard library.

    The process involves creating a setup.py file, then python setup.py bdist_egg creates an .egg package.