summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAaron Iles <aaron.iles@gmail.com>2013-12-20 22:00:16 +1100
committerAaron Iles <aaron.iles@gmail.com>2013-12-20 22:00:16 +1100
commitd201777f99aa95251f4a58272767bb990955101a (patch)
treebfa90002201703b8745b5fd96dd2b3f0e4b86d77 /Makefile
parent769506ea748a38d03de2f2953af291aa40216684 (diff)
downloadfuncsigs-d201777f99aa95251f4a58272767bb990955101a.tar.gz
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.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index d310f52..e232923 100644
--- a/Makefile
+++ b/Makefile
@@ -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