Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 384 Bytes

CONTRIBUTING.md

File metadata and controls

33 lines (23 loc) · 384 Bytes

Developing

pip install -e .

Code cleanup

Installing code management tools:

sudo apt install isort
pip install black

Running:

isort .
python -m black .

Package Management

UPDATE the version in setup.py

Uploading to PyPI

python -m pip install --upgrade setuptools twine wheel build
python -m build
python -m twine upload dist/*