diff options
author | Waylan Limberg <waylan.limberg@icloud.com> | 2017-12-08 20:13:06 -0500 |
---|---|---|
committer | Waylan Limberg <waylan.limberg@icloud.com> | 2017-12-08 20:46:24 -0500 |
commit | 193c5092b130a2e961e476982dc2d2d9c95623d2 (patch) | |
tree | f82575e1c60ff3343d3f318629e49eb034ae6e15 /makefile | |
parent | 52b8da8e47c6dce643504f503c995c310b14bd19 (diff) | |
download | markdown-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-- | makefile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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: |