summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 0ce294d69b414a659e90fdad0939fe1ad07fc079 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
.PHONY: minimal
minimal: venv

venv: setup.py requirements-dev.txt tox.ini
	tox -e venv

.PHONY: test
test:
	tox

.PHONY: clean
clean:
	find -name '*.pyc' -delete
	find -name '__pycache__' -delete
	rm -rf .tox
	rm -rf venv