Metadata-Version: 2.1
Name: qt-json-setting
Version: 0.3
Summary: 根据json schema生成设置界面
Home-page: https://github.com/ovo-Tim/pyqt-json-settingt
Author: ovo-tim
Author-email: ovo-tim@qq.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: Pyside6
Requires-Dist: jsonschema
Requires-Dist: ujson

# pyqt设置生成器
一个可以根据`json schema`自动生成设置界面的工具

![](example/image.png)

功能:
- 错误提示
- 选项描述
- 默认值提示

拓展语法`item_list`:
你可以通过指定 `item_list` 来限定内容
例如:
``` json
"optional": {
    "type": "string",
    "title": "test2",
    "item_list": ["bule", "green", "yellow"]
}
```
效果:
![](example/img2.png)
