Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 534 Bytes

CONTRIBUTING.md

File metadata and controls

24 lines (18 loc) · 534 Bytes

How to setup development environment

How to run tests

  • Run poetry run pytest
  • or run tox

How to make a release

python -m pip install --upgrade build twine

# cleanup the ./dist folder
rm -rf ./dist

# Build the distributions
python -m build

# Upload them

twine upload dist/*