Changed code to support older Python versions

This commit is contained in:
Malasaur 2025-12-01 23:27:09 +01:00
parent eb92d2d36f
commit 582458cdd0
5027 changed files with 794942 additions and 4 deletions

View file

@ -0,0 +1,37 @@
Metadata-Version: 2.4
Name: rich-toolkit
Version: 0.17.0
Summary: Rich toolkit for building command-line applications
License-Expression: MIT
License-File: LICENSE
License-File: LICENSE-THIRD-PARTY
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
```