aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 017607ec19d47fac2a3de086605a1a646472bfe1 (plain)
1
2
3
4
5
6
7
8
9
10
11
# create virtual environment
venv:
	virtualenv venv

# install all needed for development
develop: venv
	venv/bin/pip install -e . -r requirements-testing.txt tox

# clean the development envrironment
clean:
	-rm -rf venv