Contributing¶
Contributing¶
tetgenpy welcomes and appreciates discussions, issues and pull requests!
Quick start¶
Once the repo is forked, one possible starting point would be creating a new python environments, for example, using conda with python=3.9
conda create -n tetgenpyenv python=3.9
conda activate tetgenpyenv
git clone git@github.com:<path-to-your-fork>
cd tetgenpy # or <forkname>
git submodule update --init --recursive
git checkout -b new-feature0
python3 setup.py develop
Automatic formatting / style check¶
To check the format and style of your code use the following commands at tetgenpy root:
pip install pre-commit
precommit run -a