mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-03-31 19:34:00 +08:00
7 lines
281 B
Bash
7 lines
281 B
Bash
alias pypi-check='pip3 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/*'
|
|
|
|
|