tuxbot-bot/Makefile

15 lines
267 B
Makefile
Raw Normal View History

2020-06-07 15:41:34 +00:00
PYTHON = python
VENV = ~/tuxvenv
# Init
main:
$(PYTHON) -m venv --clear $(VENV)
$(VENV)/bin/pip install -U pip setuptools
install:
$(VENV)/bin/pip install .
update:
$(VENV)/bin/pip install -U .
2020-06-07 15:41:34 +00:00
# Blackify code
reformat:
$(PYTHON) -m black `git ls-files "*.py"`