Make Your Own Python Package on GitHub Installable by PIP code example
Example 1: pypi release
python3 setup.py sdist bdist_wheel
twine upload dist/*
Example 2: create python package
python3 setup.py sdist bdist_wheel
python3 setup.py sdist bdist_wheel
twine upload dist/*
python3 setup.py sdist bdist_wheel