diff options
| author | Giampaolo Rodola <g.rodola@gmail.com> | 2018-06-29 00:50:08 +0200 |
|---|---|---|
| committer | Giampaolo Rodola <g.rodola@gmail.com> | 2018-06-29 00:50:08 +0200 |
| commit | 05066d9744f0b981f612c71eecace817a2ba7a08 (patch) | |
| tree | aadbe9db6ad933b98c7e1cf575dcf527e73cfbf9 /scripts/internal | |
| parent | 2f60e997fc1c500e0c245979bbecf2761f36e820 (diff) | |
| download | psutil-05066d9744f0b981f612c71eecace817a2ba7a08.tar.gz | |
winmake: add upload-wheels cmd
Diffstat (limited to 'scripts/internal')
| -rwxr-xr-x | scripts/internal/winmake.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/scripts/internal/winmake.py b/scripts/internal/winmake.py index ff3a6489..ffdfc291 100755 --- a/scripts/internal/winmake.py +++ b/scripts/internal/winmake.py @@ -228,6 +228,13 @@ def wheel(): @cmd +def upload_wheels(): + """Upload wheel files on PYPI.""" + build() + sh("%s -m twine upload dist/*.whl" % PYTHON) + + +@cmd def install_pip(): """Install pip""" try: |
