Shell/Bash: publish pypi Example
Shell/Bash Example: This is the "publish pypi" Example. compiled from many sources on the internet by SimpleTutorials.org
publish pypi
"""NOTE: Check for potential bugs or careless mistakes before uploading you work onto the Python Package Index (PyPi) """ python3 -m pip install --upgrade twine setuptools python3 setup.py sdist bdist_wheel twine check dist/* # Upload to test.pypi.org twine upload --repository-url https://test.pypi.org/legacy/ dist/* # Upload to "real" pypi.org twine upload dist/*
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/*
* Summary: This "publish pypi" Shell/Bash Example is compiled from the internet. If you have any questions, please leave a comment. Thank you!