Merge pull request #411 from vstoykov/feature/wheel

Add universal wheels support
This commit is contained in:
Venelin Stoykov 2017-02-22 15:28:11 +02:00 committed by GitHub
commit 855c9a32b1
3 changed files with 4 additions and 1 deletions

View file

@ -2,6 +2,7 @@ include AUTHORS
include LICENSE
include README.rst
include testrunner.py
include setup.cfg
include tests/*.py
include tests/assets/Lenna.png
include tests/assets/lenna-*.jpg

2
setup.cfg Normal file
View file

@ -0,0 +1,2 @@
[bdist_wheel]
universal = 1

View file

@ -13,7 +13,7 @@ except ImportError:
if 'publish' in sys.argv:
os.system('python setup.py sdist upload')
os.system('python setup.py sdist bdist_wheel upload')
sys.exit()