fred-dev/comfy_ui_ali
0
1[project]2name = "ComfyUI"3version = "0.3.26"4readme = "README.md"5license = { file = "LICENSE" }6requires-python = ">=3.9"7 8[project.urls]9homepage = "https://www.comfy.org/"10repository = "https://github.com/comfyanonymous/ComfyUI"11documentation = "https://docs.comfy.org/"12 13[tool.ruff]14lint.select = [15 "S307", # suspicious-eval-usage16 "S102", # exec17 "T", # print-usage18 "W",19 # The "F" series in Ruff stands for "Pyflakes" rules, which catch various Python syntax errors and undefined names.20 # See all rules here: https://docs.astral.sh/ruff/rules/#pyflakes-f21 "F",22]23exclude = ["*.ipynb"]24 