Browse Source

Add support for wheels

Matt Robenolt 11 years ago
parent
commit
21ec579507
2 changed files with 7 additions and 1 deletions
  1. 4 1
      Makefile
  2. 3 0
      setup.cfg

+ 4 - 1
Makefile

@@ -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

+ 3 - 0
setup.cfg

@@ -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