Contribute
To contribute, please open a pull request to the dev-branch on GitHub.
The following is an example of how to set up VS Code for development, adapt to your IDE of choice.
TL;DR:
pip install -e .
Requirements
VS Code with the Python extension
Python 3.8 or above
Setup
Clone the repo and open it in VS Code.
Press f1, and run
Python: Create Environment. Select.venvOpen a new terminal, which should automatically use the virtual environment. If not, run
.venv\Scripts\activateon Windows, orsource .venv/bin/activateon UnixIn the same terminal, run
pip install -e .[test]to install the current directory in an editable state, and the testing utility PytestTo run tests, press f1 and run
Python: Configure Tests. Choosepytest. Run tests in the testing menu