25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

37 lines
999 B

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