Skip to content

Commit

Permalink
create inital wheel support (eliben#158)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsch authored and eliben committed Oct 4, 2017
1 parent 379b8f2 commit 5195f2c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 2 additions & 2 deletions TODO
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ do so in the future.
Distribution
------------

python setup.py build sdist upload
python setup.py build sdist bdist_wheel upload

Preparing a new release
-----------------------

* Run 'tox' tests (with '-r' to create new venvs)
* Make sure new version was updated everywhere appropriate
* Run ``python setup.py build sdist`` (no 'upload' yet)
* Run ``python setup.py build sdist bdist_wheel`` (no 'upload' yet)
* Untar the created ``dist/pyelftools-x.y.tar.gz`` and make sure
everything looks ok
* Now build with upload to send it to PyPi
Expand Down
5 changes: 5 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[bdist_wheel]
universal = 1

[metadata]
license_file = LICENSE
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# This code is in the public domain
#-------------------------------------------------------------------------------
import os, sys
from distutils.core import setup
from setuptools import setup


try:
Expand Down

0 comments on commit 5195f2c

Please sign in to comment.