Skip to content

Latest commit

 

History

History
28 lines (15 loc) · 580 Bytes

DEVELOP.md

File metadata and controls

28 lines (15 loc) · 580 Bytes

These are development notes for myself

Documentation

Documentation is generated with the following command: pdoc pysle -d google -o docs

A live version can be seen with pdoc pysle -d google

pdoc will read from pysle, as installed on the computer, so you may need to run pip install . if you want to generate documentation from a locally edited version of pysle.

Tests

Tests are run with

pytest --cov=pysle tests/

Release

Releases are built and deployed with:

python setup.py bdist_wheel sdist

twine upload dist/*

Don't forget to tag the release.