-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
57 lines (53 loc) · 1.24 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[project]
name = "comfyui-gemini"
version = "1.0.1"
description = "Nodes for Google Gemini API, focusing on backward compatibility and stability within ComfyUI."
license = { file = "LICENSE" }
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [ "google-generativeai>=0.8.3" ]
urls.Changelog = "https://github.com/Visionatrix/ComfyUI-Gemini/blob/main/CHANGELOG.md"
urls.Repository = "https://github.com/Visionatrix/ComfyUI-Gemini"
urls.Source = "https://github.com/Visionatrix/ComfyUI-Gemini"
[tool.black]
line-length = 120
preview = true
[tool.ruff]
target-version = "py310"
line-length = 120
lint.select = [
"A",
"B",
"C",
"E",
"F",
"G",
"I",
"PIE",
"Q",
"RET",
"RUF",
"S",
"SIM",
"UP",
"W",
]
lint.extend-ignore = [
"I001",
"RUF100",
"S311",
"S603",
]
lint.mccabe.max-complexity = 20
[tool.isort]
profile = "black"
[tool.comfy]
PublisherId = "visionatrix"
DisplayName = "ComfyUI-Gemini"
Icon = "https://raw.githubusercontent.com/Visionatrix/VixFlowsDocs/main/screenshots/logo_org_800x800.png"