Skip to content

Latest commit

 

History

History
15 lines (8 loc) · 347 Bytes

python-build.md

File metadata and controls

15 lines (8 loc) · 347 Bytes

Build python code to dist package

python3 {{SETUP_FILE}} sdist bdist_wheel

  • SETUP_FILE: Name or location of setup file of the project.

Example:

python3 setup.py sdist bdist_wheel

Python build dist package

Related