Horje
publish pypi Code Example
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/*




Shell

Related
how to enable or disable test mode on windows 10 Code Example how to enable or disable test mode on windows 10 Code Example
login without a password is forbidden by configuration (see allownopassword) ubuntu Code Example login without a password is forbidden by configuration (see allownopassword) ubuntu Code Example
remove last commit from remote Code Example remove last commit from remote Code Example
bash check arg number Code Example bash check arg number Code Example
how to get mac cpu temp Code Example how to get mac cpu temp Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
12