Build and distribute wheel packages

The new Python wheel package format speeds up package deployment. Wheel
packages are built and published to PyPI with the Makefile targets.
This commit is contained in:
Aaron Iles 2013-12-20 22:00:16 +11:00
parent 769506ea74
commit d201777f99
3 changed files with 5 additions and 0 deletions

View File

@ -7,10 +7,12 @@ deps:
sdist:
python setup.py sdist
python setup.py bdist_wheel
register:
python setup.py register
python setup.py sdist upload
python setup.py bdist_wheel upload
site:
cd docs; make html

View File

@ -3,3 +3,4 @@ coveralls
pip
flake8
sphinx
wheel

2
setup.cfg Normal file
View File

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