Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 322 Bytes

CONTRIBUTING.md

File metadata and controls

25 lines (19 loc) · 322 Bytes

Contributing

Environment

The system must have installed:

  • python 3
python -m venv venv
. venv/bin/activate
pip install -r dev-requirements.txt
# run tests:
python setup.py test

Publish

# update version in setup.py
# then:
rm -r dist
python setup.py sdist bdist_wheel
twine upload dist/*