Skip to content

Latest commit

 

History

History
17 lines (10 loc) · 324 Bytes

source distribution.md

File metadata and controls

17 lines (10 loc) · 324 Bytes

Python’s sdists are compressed archives (.tar.gz files) containing one or more packages or modules.

suitable for pure python packages.

a.k.a. sdist

create a sdist python setup.py sdist or python3 -m build --sdist source-tree-directory

install a sdist pip install xx.tar.gz

vs. [[built distribution]]