Skip to content

Commit

Permalink
add shell script to setup development environment
Browse files Browse the repository at this point in the history
  • Loading branch information
noxan committed Nov 24, 2022
1 parent 18e206b commit 74b9139
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions scripts/setup.sh
Original file line number Diff line number Diff line change
@@ -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]

0 comments on commit 74b9139

Please sign in to comment.