Metadata-Version: 2.1
Name: ohmygod
Version: 0.2.1
Summary: Rich CLI tool powered by gods
Home-page: https://github.com/aintbe/ohmygod
License: MIT
Author: Sori Lim
Author-email: aint.imsorry@gmail.com
Requires-Python: >=3.10,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: colorama (>=0.4,<0.5)
Requires-Dist: readchar (>=4.0.0,<5.0.0)
Requires-Dist: rich (>=12.4.4)
Description-Content-Type: text/markdown

# ohmygod - CLI Tool Powered by Gods

`OhMyGod` is an extension of `Console` class from [rich](https://github.com/Textualize/rich) library. If your program does not need a cute guardian god — for reasons only gods know — you may want to use the original library instead.

https://github.com/user-attachments/assets/9861c2c6-6bb2-4bc6-b575-e7c5dbbcd72b

### Set up with Poetry

If poetry is not installed, follow [this installation steps](https://python-poetry.org/docs/).

```bash
> poetry install --no-dev
> poetry shell
> python3 -m example
```

### Set up with PIP

```bash
> # You may skip following:
> poetry export -f requirements.txt > requirements.txt

> python3 -m venv .venv
> source ./.venv/bin/activate
> python3 -m pip install -r requirements.txt
> python3 -m example
```

