slck/script/bootstrap
Marc Cataford eacc51aa62
build: replace poetry by pip-sync (#6)
build: pytest call

build: set up venv

test: snapshot update, formatting

chore: author info formatting

chore: author info formatting

build: includes

ci: release update

docs: set_version
2022-10-29 23:22:38 -04:00

13 lines
248 B
Bash

#!/bin/bash
PROJECT="slack-status-cli"
python -m pip install pip==21.2.0 pip-tools==6.5.0 --no-cache
if [ ! -d "./$PROJECT.venv" ]; then
python -m venv ./$PROJECT.venv
fi
source ./$PROJECT.venv/bin/activate
pip-sync ./requirements_dev.txt