diff --git a/scripts/setup.sh b/scripts/setup.sh new file mode 100755 index 000000000..c31b8c4d0 --- /dev/null +++ b/scripts/setup.sh @@ -0,0 +1,11 @@ +#!/bin/sh + +echo "Setting up the environment..." +python3 -m venv .venv + +echo "Activating the environment..." +source .venv/bin/activate + +echo "Installing dependencies..." +pip install -U pip +pip install -e .[dev]