This commit is contained in:
Zsolt Ero
2023-12-02 23:42:09 +01:00
commit 28f6d4f73a
16 changed files with 464 additions and 0 deletions

14
prepare-virtualenv.sh Executable file
View File

@@ -0,0 +1,14 @@
#!/usr/bin/env bash
find . -name "*.egg-info" -exec rm -rf {} +
find . -name __pycache__ -exec rm -rf {} +
# deactivate
rm -rf venv
python3 -m venv venv
source venv/bin/activate
pip install -U pip wheel setuptools
pip install -e .