aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 8b2eb2b4be53aa3d8d027cdb57655decfe60feb4 (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 pypi
	@python setup.py bdist_wheel upload -r pypi

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

.PHONY: test publish-test publish-pypi