From 896c4a3ca46cbc23f60a408c62b11eb5cc1ffc96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Mon, 16 Jun 2025 11:59:51 +0200 Subject: [PATCH] README: update development environment setup instructions --- README.md | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 1b4f74a..da42fd1 100644 --- a/README.md +++ b/README.md @@ -19,13 +19,12 @@ python3 path/to/repo/cli.py list path/to/blendfile.blend ## Setting up development environment +First install [Poetry](https://python-poetry.org/). Because BAT has different +requirements than Poetry itself, it is recommended to install Poetry outside the +virtualenv you use for BAT. After that, run: + ``` -python3.9 -m venv .venv -. ./.venv/bin/activate -pip install -U pip -pip install poetry black -poetry install -mypy --install-types +poetry install --all-extras --all-groups ```