Metadata-Version: 2.1
Name: dc-cli-jawide
Version: 0.0.2
Summary: DC software cli
Project-URL: Homepage, https://github.com/jawide/dc-cli
Project-URL: Bug Tracker, https://github.com/jawide/dc-cli/issues
Author-email: Jawide <jawide@qq.com>
License: MIT License
        
        Copyright (c) 2022 jawide
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/markdown

Docker compose software cli

## Usage

install package

```bash
dc install package_name
```

uninstall package

```bash
dc uninstall package_name
```

update package

```bash
dc update package_name
```

### Test Publish

```bash
rm -rf dist & python -m build && python -m twine upload --repository testpypi dist/*
```

```cmd
rd /S /Q dist & python -m build && python -m twine upload --repository testpypi dist/*
```

```bash
pip uninstall -y dc-cli-jawide && pip install --index-url https://test.pypi.org/simple/ --no-deps --no-cache-dir --upgrade dc-cli-jawide
```

### Publish

```bash
rm -rf dist & python -m build && python -m twine upload dist/*
```

```cmd
rd /S /Q dist & python -m build && python -m twine upload dist/*
```

```bash
pip uninstall -y dc-cli-jawide && pip install --no-cache-dir --upgrade dc-cli-jawide
```

### Future

- [ ] 修改install子命令使其只下载应用不启动应用，添加更多命令，例如stop、start、pause
- [ ] 添加search子命令，提供应用搜索功能
- [ ] 添加ps子命令，提供应用运行状态显示功能
- [ ] 添加config子命令，用于配置全局变量
- [ ] 优化错误信息的提示