preserves/implementations/python/.envrc

9 lines
166 B
Plaintext
Raw Normal View History

2022-06-03 19:21:44 +00:00
if ! [ -d .venv ]
then
python -m venv .venv
. .venv/bin/activate
pip install -U coverage setuptools setuptools_scm wheel
else
. .venv/bin/activate
fi