Short notes on publishing the package
Create https://pypi.org API token and place it to ~/.pypirc
[pypi]
username = __token__
password = <PyPI token just generated>
Install package tools
python3 -m pip install build twine
grep version setup.cfg
grep VERSION llama/Config.py
rm dist/*
python3 -m build
python3 -m twine upload dist/*