sdist
sdist, short for source distribution, is a distribution archive that contains the source code and metadata needed to build a Python project from source. It is designed to be portable across systems so that users can build and install the package on platforms where pre-built binaries are not available.
sdists are created by packaging tools such as setuptools via the sdist command or other modern build
A source distribution usually contains the project’s source code alongside metadata files such as setup.cfg, pyproject.toml,
In the distribution ecosystem, sdists are one way to distribute Python packages, complementing built distributions like