Advertisement
cooperlees

Untitled

Jul 12th, 2018
369
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.38 KB | None | 0 0
  1. mkdir ~/venvs
  2. python3.6 -m venv ~/venvs/pypi_upload
  3. ~/venvs/pypi_upload/bin/pip install --upgrade pip setuptools twine wheel
  4.  
  5. cd xar
  6. rm -r dist
  7.  
  8. ~/venvs/pypi_upload/bin/python setup.py sdist
  9. ~/venvs/pypi_upload/bin/python setup.py bdist_wheel
  10.  
  11. ~/venvs/pypi_upload/bin/twine upload dist/xar-18.7.12-py2.py3-none-any.whl
  12. ~/venvs/pypi_upload/bin/twine upload dist/xar-18.7.12.tar.gz
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement