Skip to content

Commit

Permalink
build wheel instead
Browse files Browse the repository at this point in the history
  • Loading branch information
F483 committed Sep 20, 2015
1 parent e32f2df commit 8811c9e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ test: setup


publish: test
$(PY) setup.py register sdist upload
$(PY) setup.py register bdist_wheel upload


# import pudb; pu.db # set break point
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[bdist_wheel]
universal = 1
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@


exec(open('storjcore/version.py').read()) # load __version__
DOWNLOAD_URL = "%(baseurl)s/%(name)s/%(name)s-%(version)s.tar.gz" % {
'baseurl': "https://pypi.python.org/packages/source/a",
DOWNLOAD_URL = "%(baseurl)s/%(name)s/%(name)s-%(version)s-py2.py3-none-any.whl" % {
'baseurl': "https://pypi.python.org/packages/3.4/d",
'name': 'storjcore',
'version': __version__ # NOQA
}
Expand Down

0 comments on commit 8811c9e

Please sign in to comment.