@@ -98,4 +98,7 @@ coverage: develop
run-uwsgi:
uwsgi --http 127.0.0.1:8000 --need-app --disable-logging --wsgi-file src/sentry/wsgi.py --processes 1 --threads 5
-.PHONY: build
+publish:
+ python setup.py sdist bdist_wheel upload
+
+.PHONY: build publish
@@ -7,3 +7,6 @@ timeout=5
ignore = F999,E501,E128,E124
max-line-length = 100
exclude = .tox,.git,*/migrations/*,*/static/CACHE/*,docs
+[wheel]
+universal = 1