==== Making a release ====

https://the-hitchhikers-guide-to-packaging.readthedocs.io/en/latest/quickstart.html

python setup.py sdist

==== How to build ====

pip install sdist .

======= not confirmed working==============

install for local usage

python setup.py sdist

# THis works if you call it from a different directory
pip install /eng/scylla/scylla-stress-orchestrator/dist/scyllaso-0.1.tar.gz

https://stackoverflow.com/questions/40695757/create-a-python-package-install-it-as-source-distribution-and-not-a-egg

============== Releasing ==============

Prerequisites:
pip install twine

Releasing:
python setup.py sdist bdist_wheel

https://realpython.com/pypi-publish-python-package/