aboutsummaryrefslogtreecommitdiffstats
path: root/makefile
diff options
context:
space:
mode:
authorWaylan Limberg <waylan.limberg@icloud.com>2017-12-08 20:13:06 -0500
committerWaylan Limberg <waylan.limberg@icloud.com>2017-12-08 20:46:24 -0500
commit193c5092b130a2e961e476982dc2d2d9c95623d2 (patch)
treef82575e1c60ff3343d3f318629e49eb034ae6e15 /makefile
parent52b8da8e47c6dce643504f503c995c310b14bd19 (diff)
downloadmarkdown-193c5092b130a2e961e476982dc2d2d9c95623d2.tar.gz
markdown-193c5092b130a2e961e476982dc2d2d9c95623d2.tar.bz2
markdown-193c5092b130a2e961e476982dc2d2d9c95623d2.zip
Build and upload wheels for releases.
Update install docs.
Diffstat (limited to 'makefile')
-rw-r--r--makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/makefile b/makefile
index ef1349e..8cfd0ea 100644
--- a/makefile
+++ b/makefile
@@ -20,11 +20,13 @@ install:
.PHONY : deploy
deploy:
- python setup.py sdist --formats gztar upload
+ rm -rf dist
+ python setup.py bdist_wheel sdist --formats gztar
+ twine upload dist/*
.PHONY : build
build:
- python setup.py sdist --formats gztar
+ python setup.py bdist_wheel sdist --formats gztar
.PHONY : build-win
build-win: