This repository has been archived on 2024-06-02. You can view files and clone it, but cannot push or open issues or pull requests.
spud-py/script/bootstrap.sh

13 lines
175 B
Bash
Raw Normal View History

#!/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 .