Skip to content
Snippets Groups Projects
After you've reviewed these contribution guidelines, you'll be all set to contribute to this project.

Contributing

Environment

The system must have installed:

  • python 3
  • virtualenv
virtualenv -p python3 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/*