Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 344 Bytes

CONTRIBUTING.md

File metadata and controls

28 lines (20 loc) · 344 Bytes

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/*