This is a wrapper written in Python for the Cupid API.
To work on this wrapper, you will need Pipenv (as well as Python 3.9+).
Pipenv can be installed through PyPI, for example python3 -m pip install pipenv
.
Once you have pipenv installed:
- Create a virtual environment:
python3 -m pipenv shell
- Install development dependencies:
pipenv install -d
- Lint the project:
pipenv run lint
- Run unit tests:
pipenv run test
- Build the docs:
pipenv run docs