mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-03-06 21:31:17 +01:00
Added list of aliases in pypi plugin
This commit is contained in:
parent
f965e9a58b
commit
a35d2c19fc
1 changed files with 8 additions and 0 deletions
|
@ -7,3 +7,11 @@ To access this plugin, add the parameter `pypi` to the plugins array of your zsh
|
|||
plugins=(... pypi)
|
||||
```
|
||||
|
||||
## Aliases
|
||||
|
||||
| Alias Command | Original Command | Description |
|
||||
|------------------------|-----------------------------------------------------------------------|----------------------------------------------------------------------------------------|
|
||||
| `pypi-check` | `pip3 install twine setuptools` | Used to check the required libraries to upload a package in pypi |
|
||||
| `pypi-ltest` | `python3 setup.py sdist && python3 -m pip install dist/*` | Used to install setup.py file to local machine for testing before uploading into pypi. |
|
||||
| `pypi-tupload` | `python3 setup.py sdist && twine upload --repository testpypi dist/*` | Used to upload a python package to testpypi for testing |
|
||||
| `pypi-upload` | `python3 setup.py sdist && twine upload dist/*` | Used to upload a python package to pypi. |
|
||||
|
|
Loading…
Add table
Reference in a new issue