# MacOS / Linux
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python -
# Windows
(Invoke-WebRequest -Uri https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py -UseBasicParsing).Content | python -
- Install dependencies & pre-commit hooks:
poetry install
pre-commit install
- (Optional) Activate the poetry virtual environment:
poetry shell
- Run tests & mypy using tox:
tox