12 lines
175 B
Bash
Executable file
12 lines
175 B
Bash
Executable file
#!/usr/bin/bash
|
|
|
|
VENV=spud.venv
|
|
|
|
python -m venv "$VENV"
|
|
|
|
. "$VENV/bin/activate"
|
|
|
|
pip install -U pip pip-tools
|
|
pip-sync requirements.txt requirements_dev.txt
|
|
|
|
pip install -e .
|