Metadata-Version: 2.4
Name: catamaran
Version: 0.2.9
Summary: GitOps scripts for yacht users
License-File: COPYING
Author: Hamed Ghasemzadeh
Author-email: hg@evgnomon.org
Requires-Python: >=3.11,<3.14
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: ansible (>=11.5.0,<12.0.0)
Requires-Dist: docker (>=7.1.0,<8.0.0)
Requires-Dist: httpx (>=0.27.2,<0.28.0)
Requires-Dist: packaging (>=25.0,<26.0)
Requires-Dist: pyyaml (>=6.0.2,<7.0.0)
Requires-Dist: typer (>=0.12.5,<0.13.0)
Project-URL: Homepage, https://github.com/evgnomon/catamaran
Description-Content-Type: text/markdown

# Getting started

```bash
poetry install
poetry run poe check
pip install -e . # for ansible to find the collection
```

# Release a new version

Version string is in `pyproject.toml` and `ansible_collections/evgnomon/catamaran/galaxy.yml` should be the same.
Upgrade with poetry then set the same version in `galaxy.yml`.

```
poetry version patch
# Set the same version in ansible_collections/evgnomon/catamaran/galaxy.yml
```


