Thank you for opening this file! :)
# clone this repo or your fork of it
git clone github:pavelsof/stl
cd stl
# create a virtual env
# the venv dir is git-ignored
python3 -m venv venv
source venv/bin/activate
# install the test dependencies
# you can also pip install -r requirements.txt
pip install pip-tools
pip-sync
# run the tests
python -m unittest
# check for PEP8 issues
flake8
For file encoding, newlines, indentation: please use the .editorconfig
rules (take a look here if this is new for you).
For coding style: please follow PEP8.