You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
222 B

# 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