Add setup.cfg to declare wheel as universal

As the project is pure Python, a built wheel should always be universal,
so define in the project globally. Can remove --universal command from
Makefile.

See:

http://pythonwheels.com/
This commit is contained in:
Jon Dufresne
2017-05-20 07:39:09 -07:00
parent fb3f2a030f
commit 2c71f2d520
2 changed files with 3 additions and 2 deletions
+1 -2
View File
@@ -50,8 +50,7 @@ idna:
publish:
pip install 'twine>=1.5.0'
python setup.py sdist
python setup.py bdist_wheel --universal
python setup.py sdist bdist_wheel
twine upload dist/*
rm -fr build dist .egg requests.egg-info
+2
View File
@@ -0,0 +1,2 @@
[bdist_wheel]
universal = 1