pip upload package code example
Example 1: pypi release
python3 setup.py sdist bdist_wheel
twine upload dist/*
Example 2: python upload to pip
1. Create files:
__init__.py setup.py README.md LICENSE
2. Check for setuptools and wheel:
pip install --user --upgrade setuptools wheel
3. Generate package:
py setup.py sdist bdist_wheel
4. Upload to pip:
twine upload dist/*
Example 3: create python package
python3 setup.py sdist bdist_wheel