Files
2024-12-27 22:31:23 +09:00

36 lines
966 B
Plaintext

Metadata-Version: 2.3
Name: rich-toolkit
Version: 0.12.0
Summary: Rich toolkit for building command-line applications
License: MIT
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.8
Requires-Dist: click>=8.1.7
Requires-Dist: rich>=13.7.1
Requires-Dist: typing-extensions>=4.12.2
Description-Content-Type: text/markdown
# Rich Toolkit
This is a very opinionated set of components for building CLI applications.
It is based on [Rich](https://github.com/Textualize/rich)
## Installation
```bash
pip install rich-toolkit
```
## Example usage
Rich toolkit comes with an `App` class, this is used to give a consistent
style to your CLI application, it can be used as a context manager, like so:
```python
TODO: new example
```