dotfiles/.local/bin/make-venv

10 lines
166 B
Bash
Executable file

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