Metadata-Version: 2.4
Name: richout
Version: 0.0.2
Summary: Customized Rich fork with a warm light default theme and richout runtime package
License: MIT
License-File: LICENSE
Author: thompson
Requires-Python: >=3.9.0
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Framework :: IPython
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Typing :: Typed
Provides-Extra: jupyter
Requires-Dist: ipywidgets (>=7.5.1,<9) ; extra == "jupyter"
Requires-Dist: markdown-it-py (>=2.2.0)
Requires-Dist: pygments (>=2.13.0,<3.0.0)
Description-Content-Type: text/markdown

# richout

This package is a customized fork of Rich with a warm light default theme and a
first-class `richout` import path.

It keeps the upstream API shape as much as possible while shifting the default
visual language for logs, tables, markdown, JSON output, tracebacks, and
progress rendering.

## What Changed

- Runtime package available as `import richout`.
- Default terminal export theme updated to a warm light palette.
- Default styles updated for logging, markdown, JSON, tables, tracebacks, and progress UI.
- Dedicated `richout` CLI entrypoint added.

## Install

```bash
pip install richout==0.0.2
```

```python
import richout
from richout.console import Console

console = Console()
console.print("hello from richout")
```

## Notes

This package is based on the upstream Rich project by Textualize and includes
modified source code distributed under the MIT License. The original license
text is retained in `LICENSE`.

