mirror of
https://github.com/robbyrussell/oh-my-zsh.git
synced 2026-02-13 21:00:57 +01:00
7 lines
291 B
Bash
7 lines
291 B
Bash
alias pypi-check='python3 -m pip install twine setuptools'
|
|
alias pypi-ltest='python3 setup.py sdist && python3 -m pip install dist/*'
|
|
alias pypi-tupload='python3 setup.py sdist && twine upload --repository testpypi dist/*'
|
|
alias pypi-upload='python3 setup.py sdist && twine upload dist/*'
|
|
|
|
|