Skip to content

Latest commit

 

History

History
8 lines (7 loc) · 281 Bytes

File metadata and controls

8 lines (7 loc) · 281 Bytes

How to build pip package

  1. Update mimosa/init.py to latest version number
  2. pip install --upgrade build
  3. python -m build
  4. pip install --upgrade twine
  5. twine upload --repository testpypi dist/* (token set in .pypirc or in keyring)
  6. twine upload dist/*