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
Marc Cataford dc57ecd228
Some checks failed
/ Static Analysis (push) Failing after 29s
/ Tests (push) Failing after 16s
feat: scaffolding + init and print configuration
2024-04-12 01:09:56 -04:00

12 lines
185 B
Bash
Executable file

#!/usr/bin/bash
VENV=spud.venv
python -m venv --upgrade "$VENV"
. "$VENV/bin/activate"
pip install -U pip pip-tools
pip-sync requirements.txt requirements_dev.txt
pip install -e .