Skip to content

Latest commit

 

History

History
44 lines (32 loc) · 613 Bytes

release.md

File metadata and controls

44 lines (32 loc) · 613 Bytes

Details

Generating distribution archives

pip install --upgrade setuptools wheel
python setup.py sdist bdist_wheel

Uploading

This requires a configured ~/.pypirc file:

[distutils]
index-servers =
  pypi
  pypitest

[pypi]
username = __token__
password = pypi-TOKEN_FROM_PYPI_WEBSITE
pip install --upgrade twine
python -m twine upload --repository pypi dist/*

Next release

python setup.py sdist bdist_wheel
python -m twine upload --repository pypi dist/*