Browse Source

Update pip deploy script to use twine

pull/210/head
chriskiehl 7 years ago
parent
commit
343d0bcdeb
1 changed files with 2 additions and 1 deletions
  1. 3
      pip_deploy.py

3
pip_deploy.py

@ -1,4 +1,5 @@
import subprocess import subprocess
subprocess.call('python setup.py sdist') subprocess.call('python setup.py sdist')
subprocess.call('python setup.py sdist bdist_wheel upload')
subprocess.call('python setup.py bdist_wheel --universal')
subprocess.call('twine upload dist/*')
Loading…
Cancel
Save