scripts/bootstrap.sh

16 lines
231 B
Bash
Raw Normal View History

2024-07-06 19:52:06 +00:00
#!/bin/bash
python -m venv scripts.venv
. scripts.venv/bin/activate
python -m pip install pip~=24.0 pip-tools~=7.4
if [[ ! -f requirements.txt ]]; then
touch requirements.txt
fi
pip-sync requirements.txt
pip install -e .