METADATA 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. Metadata-Version: 2.4
  2. Name: rich-toolkit
  3. Version: 0.15.1
  4. Summary: Rich toolkit for building command-line applications
  5. License-Expression: MIT
  6. License-File: LICENSE
  7. License-File: LICENSE-THIRD-PARTY
  8. Classifier: Development Status :: 4 - Beta
  9. Classifier: Intended Audience :: Developers
  10. Classifier: License :: OSI Approved :: MIT License
  11. Classifier: Topic :: Software Development :: Libraries
  12. Classifier: Topic :: Software Development :: Libraries :: Python Modules
  13. Requires-Python: >=3.8
  14. Requires-Dist: click>=8.1.7
  15. Requires-Dist: rich>=13.7.1
  16. Requires-Dist: typing-extensions>=4.12.2
  17. Description-Content-Type: text/markdown
  18. # Rich Toolkit
  19. This is a very opinionated set of components for building CLI applications.
  20. It is based on [Rich](https://github.com/Textualize/rich)
  21. ## Installation
  22. ```bash
  23. pip install rich-toolkit
  24. ```
  25. ## Example usage
  26. Rich toolkit comes with an `App` class, this is used to give a consistent
  27. style to your CLI application, it can be used as a context manager, like so:
  28. ```python
  29. TODO: new example
  30. ```