From 4d61054970c453b7542d517d24c364feed950e23 Mon Sep 17 00:00:00 2001 From: missytake Date: Sat, 7 Oct 2023 10:14:11 +0200 Subject: [PATCH] documented development environment --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index 88bfc4c..ffd5d12 100644 --- a/README.md +++ b/README.md @@ -22,3 +22,15 @@ hiding the identities of the team members. ## Usage: Command Line Interface +## Development Environment + +To get started with developing, +run: + +``` +python3 -m venv venv +. venv/bin/activate +pip install pytest tox black +pip install -e . +tox +```