second commit

This commit is contained in:
2024-12-27 22:31:23 +09:00
parent 2353324570
commit 10a0f110ca
8819 changed files with 1307198 additions and 28 deletions

View File

@ -0,0 +1 @@
pip

View File

@ -0,0 +1,35 @@
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
```

View File

@ -0,0 +1,31 @@
rich_toolkit-0.12.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
rich_toolkit-0.12.0.dist-info/METADATA,sha256=EvcNm1D2QGUXsBnuqMUEhGoXFR591EC2tnUtC5oifqk,966
rich_toolkit-0.12.0.dist-info/RECORD,,
rich_toolkit-0.12.0.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
rich_toolkit-0.12.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
rich_toolkit-0.12.0.dist-info/licenses/LICENSE,sha256=cVeSUfwn7g0UsWhiiGCIB-PKRr-Fut9GSN5NKDzYpTI,1072
rich_toolkit/__init__.py,sha256=Dsfdf63W-jtKTE9vnM_W3sZKNwZMoTHZLP2LO4Fi2bw,98
rich_toolkit/__pycache__/__init__.cpython-311.pyc,,
rich_toolkit/__pycache__/input.cpython-311.pyc,,
rich_toolkit/__pycache__/menu.cpython-311.pyc,,
rich_toolkit/__pycache__/progress.cpython-311.pyc,,
rich_toolkit/__pycache__/toolkit.cpython-311.pyc,,
rich_toolkit/input.py,sha256=M5Zay02QvawH0SvVb1o7W-2Iu4jZijdt9gQVWRmmB6A,5306
rich_toolkit/menu.py,sha256=_1XFdjXZqP95PoUZ5OsTnoesHkH-UDUia39OxkWja2c,8869
rich_toolkit/progress.py,sha256=xbKkA5aNkmnAnE7KU3UDtN7fcs84ddHaV_8TdzMmHn8,1531
rich_toolkit/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
rich_toolkit/styles/__init__.py,sha256=faavV2nb0LFm0w-EQwl3nShIQH59TYpNMSGT8ktsyCo,168
rich_toolkit/styles/__pycache__/__init__.cpython-311.pyc,,
rich_toolkit/styles/__pycache__/base.cpython-311.pyc,,
rich_toolkit/styles/__pycache__/fancy.cpython-311.pyc,,
rich_toolkit/styles/__pycache__/minimal.cpython-311.pyc,,
rich_toolkit/styles/__pycache__/tagged.cpython-311.pyc,,
rich_toolkit/styles/base.py,sha256=T8Uh5CXl0BMxvg1IO7Axax-gVVrilf9uZDNSRsODOHM,3771
rich_toolkit/styles/fancy.py,sha256=M0bXnPoP0YnslfOmoOID6CB82Cfnphp0GcMjX2-0QHI,1758
rich_toolkit/styles/minimal.py,sha256=hEkkMRRx6iG1jQHEOFUTRzPc_5irr9kRsDGAm1cFPQY,1607
rich_toolkit/styles/tagged.py,sha256=F1UwL6Ip6NSvYa3u8UraC3GMBegLkrz5ygxBHlDkAW0,2978
rich_toolkit/toolkit.py,sha256=WBSYgGCNSY1RFIz9cM0Z9jZr51FEFVEHBfede6yy2A0,3399
rich_toolkit/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
rich_toolkit/utils/__pycache__/__init__.cpython-311.pyc,,
rich_toolkit/utils/__pycache__/colors.cpython-311.pyc,,
rich_toolkit/utils/colors.py,sha256=UUiNa2qVI3FHelPudrN62JNFWyc_9m1lVNamfYWVrD8,343

View File

@ -0,0 +1,4 @@
Wheel-Version: 1.0
Generator: hatchling 1.26.3
Root-Is-Purelib: true
Tag: py3-none-any

View File

@ -0,0 +1,21 @@
MIT License
Copyright (c) 2024 Patrick Arminio
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.