SHELL := /bin/bash

init:
	python setup.py develop
	pip install -r requirements.txt

test:
	rm -f .coverage
	pytest

travis:
	pytest --cov

tdaemon:
	tdaemon -t nose ./tests/ --custom-args="--with-growl"

tag:
	python create_tag.py

publish:
	rm -rf dist
	python -m pep517.build --source --binary .
	twine upload dist/*

venv:
	virtualenv venv
	venv/bin/pip install -r requirements.txt
