Metadata-Version: 2.1
Name: rosa-python-client
Version: 1.0.56
Summary: Wrapper for rosa cli
Home-page: https://github.com/RedHatQE/rosa-python-client
License: Apache-2.0
Author: Meni Yakove
Author-email: myakove@gmail.com
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: python-benedict (>=0.33.0,<0.34.0)
Requires-Dist: python-simple-logger (>=1.0.5)
Requires-Dist: redhat-qe-cloud-tools (>=1.0.19)
Project-URL: Bug Tracker, https://github.com/RedHatQE/rosa-python-client/issues
Project-URL: Documentation, https://github.com/RedHatQE/rosa-python-client/blob/main/README.md
Project-URL: Download, https://pypi.org/project/rosa-python-client/
Description-Content-Type: text/markdown

# rosa-python-client
Pypi: [rosa-python-client](https://pypi.org/project/rosa-python-client/)  
A utility to run ROSA commands in CLI

## Release new version
### requirements:
* Export GitHub token

```bash
export GITHUB_TOKEN=<your_github_token>
```
* [release-it](https://github.com/release-it/release-it)

```bash
sudo npm install --global release-it
npm install --save-dev @release-it/bumper
```
Note: execute outside the repository directory (for example `~/`)

### usage:
* To create a new release, run:

```bash
git main
git pull
release-it # Follow the instructions
```

## Known Limitations:
Although rose cli support args with ` ` (space) when using this module we only accept arg=value

rosa cli accept: `rosa create cluster --cluster-name mycluster`  
when called with this module the command should be: `rosa create cluster --cluster-name=mycluster`  

