summaryrefslogtreecommitdiff
path: root/tools/create-pyenv.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tools/create-pyenv.sh')
-rwxr-xr-xtools/create-pyenv.sh9
1 files changed, 9 insertions, 0 deletions
diff --git a/tools/create-pyenv.sh b/tools/create-pyenv.sh
new file mode 100755
index 0000000..64b1fbf
--- /dev/null
+++ b/tools/create-pyenv.sh
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+PROJ_ROOT=$(git rev-parse --show-toplevel)
+cd $PROJ_ROOT
+
+python3 -m venv fudenv
+. fudenv/bin/activate
+pip install cppcheck-codequality
+deactivate