Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 359 Bytes

CONTRIBUTING.md

File metadata and controls

23 lines (18 loc) · 359 Bytes

Publishing new Versions

Prereqs:

  • Create a ~/.pypirc
[testpypi]
  username = __token__
  password = ...

(Note that __token__ is NOT a placeholder)

  • Install twine
python3 -m pip install --upgrade twine
  1. Bump the version in setup.cfg
  2. python3 -m build
  3. twine upload dist/*

Test the package

Run make test.