aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: ac56d8eb0debc91969249d15174cfbb7f7defc06 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
test:
	@cd tests && PYTHONPATH=../ py.test

publish-test:
	@python setup.py sdist upload -r test
	@python setup.py bdist_wheel upload -r test

publish-pypi:
	@python setup.py sdist upload -r pypi
	@python setup.py bdist_wheel upload -r pypi

.PHONY: test publish-test publish-pypi