[](https://pypi.python.org/pypi/{{ cookiecutter.project_slug }}) [](https://pypi.python.org/pypi/{{ cookiecutter.project_slug }}) [](https://pypi.python.org/pypi/{{ cookiecutter.project_slug }}) [](https://github.com/{{ cookiecutter.org }}/{{ cookiecutter.project_slug }}/actions/checks.yaml)
{{ cookiecutter.description }}
{% if cookiecutter.add_docs %}---
[Documentation](https://{{ cookiecutter.project_slug }}.readthedocs.io/stable/) · [Installation](https://{{ cookiecutter.project_slug }}.readthedocs.io/stable/install.html) · [Usage](https://{{ cookiecutter.project_slug }}.readthedocs.io/stable/usage.html) · [API reference](https://{{ cookiecutter.project_slug }}.readthedocs.io/stable/reference/index.html){% endif %}
Install from [PyPI](https://pypi.org/project/{{ cookiecutter.project_slug }}/):
python3 -m pip install {{ cookiecutter.project_slug }}---{% if cookiecutter.add_docs %}
We welcome bug reports, feature requests, and code contributions from users and interested collaborators. The [documentation](https://{{ cookiecutter.project_slug }}.readthedocs.io/latest/contributing.html) contains guidance for submitting feedback and contributing new code.{% else %}
Clone the repo and create a virtual environment:
git clone https://github.com/{{ cookiecutter.org }}/{{ cookiecutter.repo }}
cd {{ cookiecutter.repo }}
python3 -m virtualenv venv
source venv/bin/activateInstall development dependencies and prek:
python3 -m pip install -e '.[dev,tests]'
prek installCheck style with ruff:
python3 -m ruff format . && python3 -m ruff check --fix .Run tests with pytest:
pytest
```{% endif %}