dotfiles/.local/bin/make-venv

11 lines
174 B
Bash
Executable file

#! /usr/bin/sh
python3 -m venv .venv
. .venv/bin/activate
pip install \
black \
coverage \
isort \
'python-lsp-server[rope]' \
ruff-lsp
pip install -e .