This commit is contained in:
Inflation 2024-11-06 10:55:43 +08:00
parent 7ebd8087ff
commit 9239819dc1
No known key found for this signature in database
17 changed files with 2542 additions and 2 deletions

2
.gitignore vendored
View File

@ -5,7 +5,7 @@ __pycache__/
!/input/example.png
/models/
/temp/
/custom_nodes/
# /custom_nodes/
!custom_nodes/example_node.py.example
extra_model_paths.yaml
/.vs

36
.gitmodules vendored Normal file
View File

@ -0,0 +1,36 @@
[submodule "custom_nodes/cg-image-picker"]
path = custom_nodes/cg-image-picker
url = https://github.com/chrisgoringe/cg-image-picker.git
[submodule "custom_nodes/ComfyUI-GGUF"]
path = custom_nodes/ComfyUI-GGUF
url = https://github.com/city96/ComfyUI-GGUF.git
[submodule "custom_nodes/ComfyUI-Impact-Pack"]
path = custom_nodes/ComfyUI-Impact-Pack
url = https://github.com/ltdrdata/ComfyUI-Impact-Pack.git
[submodule "custom_nodes/ComfyUI-Manager"]
path = custom_nodes/ComfyUI-Manager
url = https://github.com/ltdrdata/ComfyUI-Manager.git
[submodule "custom_nodes/ComfyUI_essentials"]
path = custom_nodes/ComfyUI_essentials
url = https://github.com/cubiq/ComfyUI_essentials.git
[submodule "custom_nodes/Derfuu_ComfyUI_ModdedNodes"]
path = custom_nodes/Derfuu_ComfyUI_ModdedNodes
url = https://github.com/Derfuu/Derfuu_ComfyUI_ModdedNodes.git
[submodule "custom_nodes/cg-use-everywhere"]
path = custom_nodes/cg-use-everywhere
url = https://github.com/chrisgoringe/cg-use-everywhere.git
[submodule "custom_nodes/rgthree-comfy"]
path = custom_nodes/rgthree-comfy
url = https://github.com/rgthree/rgthree-comfy.git
[submodule "custom_nodes/ComfyUI-KJNodes"]
path = custom_nodes/ComfyUI-KJNodes
url = https://github.com/kijai/ComfyUI-KJNodes.git
[submodule "custom_nodes/ComfyUI-Advanced-ControlNet"]
path = custom_nodes/ComfyUI-Advanced-ControlNet
url = https://github.com/Kosinkadink/ComfyUI-Advanced-ControlNet.git
[submodule "custom_nodes/ComfyUI-TiledDiffusion"]
path = custom_nodes/ComfyUI-TiledDiffusion
url = https://github.com/shiimizu/ComfyUI-TiledDiffusion.git
[submodule "custom_nodes/comfyui-browser"]
path = custom_nodes/comfyui-browser
url = https://github.com/talesofai/comfyui-browser.git

1
.python-version Normal file
View File

@ -0,0 +1 @@
3.12

@ -0,0 +1 @@
Subproject commit da254b700db562a22e03358b933c85a9a3392540

@ -0,0 +1 @@
Subproject commit 5aa6e98ad74e2fa826f80c8dbded5ec3dd09ba1f

@ -0,0 +1 @@
Subproject commit 782c6f439eda79d88f22908bc83f57db77d44097

@ -0,0 +1 @@
Subproject commit c19ad3491691dde7219bc0dab17acefb81bd0be0

@ -0,0 +1 @@
Subproject commit 39eaa76b8a72a5e158f695062d4e8ff5609bca48

@ -0,0 +1 @@
Subproject commit d9c046d52084a3ccfe7fcaa92cb96ad9bbf7e325

@ -0,0 +1 @@
Subproject commit 33ff89fd354d8ec3ab6affb605a79a931b445d99

@ -0,0 +1 @@
Subproject commit d0905bed31249f2bd0814c67585cf4fe3c77c015

@ -0,0 +1 @@
Subproject commit f349bc0a38ab78a1289e808ec824f3be553594c3

@ -0,0 +1 @@
Subproject commit 8017bc6b063f45db6b986d9fc8bb76bd3234b838

@ -0,0 +1 @@
Subproject commit 95fd55d663f4ebbc54949af5dfd1b0650153fc52

@ -0,0 +1 @@
Subproject commit 32142fe476878a354dda6e2d4b5ea98960de3ced

View File

@ -3,7 +3,82 @@ name = "ComfyUI"
version = "0.3.26"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.9"
requires-python = ">=3.12"
dependencies = [
"torch>=2.6.0",
"torchvision>=0.21.0",
"torchaudio>=2.6.0",
"triton; sys_platform == 'linux'",
"triton-windows; sys_platform == 'win32'",
"torchsde",
"einops",
"transformers>=4.28.1",
"tokenizers>=0.13.3",
"sentencepiece",
"safetensors>=0.4.2",
"aiohttp",
"pyyaml",
"Pillow",
"scipy",
"tqdm",
"psutil",
# non essential dependencies:
"kornia>=0.7.1",
"spandrel",
"soundfile",
# ComfyUI_essentials
"numba",
"colour-science",
"rembg",
"pixeloe",
"transparent-background",
# ComfyUI-GGUF
"gguf>=0.9.1",
"numpy<2.0.0",
# ComfyUI-Impact-Pack
"segment-anything",
"scikit-image",
"piexif",
# "opencv-python-headless",
"GitPython",
"scipy",
"dill",
"matplotlib==3.8",
"ultralytics!=8.2.87",
# ComfyUI-Manager
"PyGithub",
"matrix-client==0.4.0",
"huggingface-hub>0.20",
"typer",
"rich",
"typing-extensions",
# efficiency-nodes-comfyui
"clip-interrogator",
"simpleeval",
# KJNodes
"pillow>=10.3.0",
"color-matcher",
"matplotlib",
"mss",
"opencv-python",
# Browser
"tqdm",
"pandas",
"numpy",
"requests",
"urllib3",
# ComfyUI-ODE
"torchdiffeq",
]
[tool.uv.sources]
torch = { index = "pytorch" }
[[tool.uv.index]]
name = "pytorch"
url = "https://download.pytorch.org/whl/cu126/"
explicit = true
[project.urls]
homepage = "https://www.comfy.org/"
@ -21,3 +96,4 @@ lint.select = [
"F",
]
exclude = ["*.ipynb"]

2415
uv.lock Normal file

File diff suppressed because it is too large Load Diff