Metadata-Version: 2.1
Name: redhat-qe-cloud-tools
Version: 1.0.61
Summary: Python utilities to manage cloud services, such as AWS.
Home-page: https://github.com/RedHatQE/cloud-tools
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: boto3 (>=1.34.18,<2.0.0)
Requires-Dist: click (>=8.1.4,<9.0.0)
Requires-Dist: colorlog (>=6.7.0,<7.0.0)
Requires-Dist: configparser (>=6.0.0,<7.0.0)
Requires-Dist: google-cloud-compute (>=1.14.1,<2.0.0)
Requires-Dist: openshift-python-utilities (>=5.0.0)
Requires-Dist: python-simple-logger (>=1.0.5)
Project-URL: Bug Tracker, https://github.com/RedHatQE/cloud-tools/issues
Project-URL: Documentation, https://github.com/RedHatQE/cloud-tools/blob/main/README.md
Project-URL: Download, https://pypi.org/project/redhat-qe-cloud-tools/
Project-URL: Repository, https://github.com/RedHatQE/cloud-tools
Description-Content-Type: text/markdown

# cloud-tools
Python utilities to manage cloud services, such as AWS.

## Local run

clone the [repository](https://github.com/RedHatQE/cloud-tools.git)

```
git clone https://github.com/RedHatQE/cloud-tools.git
```

Install [poetry](https://github.com/python-poetry/poetry)

```
poetry install
```

## Docs
- [AWS Readme](clouds/aws/README.md)

## Release new version
### requirements:
* Export GitHub token
```bash
export GITHUB_TOKEN=<your_github_token>
```
* [release-it](https://github.com/release-it/release-it)
Run the following once (execute outside repository dir for example `~/`):
```bash
sudo npm install --global release-it
npm install --save-dev @j-ulrich/release-it-regex-bumper
rm -f package.json package-lock.json
```
### usage:
* Create a release, run from the relevant branch.
To create a new release, run:
```bash
git checkout main
git pull
release-it # Follow the instructions
```

