Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 771 Bytes

CONTRIBUTORS.md

File metadata and controls

32 lines (24 loc) · 771 Bytes

Contributing

If you are a contributor and want an editable install, rather than in site-packages:

  1. Clone the tonydbc repo from GitHub
  2. Navigate to the tonydbc root directory
  3. Run python -m pip install -e . to install the repo as an editable install.

Publishing

To publish a new version of tonydbc to PyPI:

  1. Get an API token at PyPI
  2. Save the token with filled-in <password> to C:\Users\<username>\.pyprc:
[pypi]
  username = __token__
  password = <password>
  1. Navigate to the tonydbc root directory
  2. Run these commands:
# python -m pip install build twine bumpver
bumpver update --patch
python -m build
twine check dist/*
# twine upload -r testpypi dist/*
twine upload dist/*