Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 817 Bytes

CONTRIBUTING.rst

File metadata and controls

41 lines (28 loc) · 817 Bytes

how to contribute

Thank you for opening this file! :)

project setup

# 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

conventions

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.