chore: scaffold ComfyUI-Datasete-Gates package

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-06-21 12:51:54 +02:00
parent 19e670ced6
commit d75f73af2d
8 changed files with 22 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
"""ComfyUI-Datasete-Gates — custom nodes."""
from .gates.node import NODE_CLASS_MAPPINGS, NODE_DISPLAY_NAME_MAPPINGS
from .gates import routes # noqa: F401 (registers aiohttp routes on import)
WEB_DIRECTORY = "./web"
__all__ = ["NODE_CLASS_MAPPINGS", "NODE_DISPLAY_NAME_MAPPINGS", "WEB_DIRECTORY"]
View File
+3
View File
@@ -0,0 +1,3 @@
# gates/node.py — stub (filled in Task 9)
NODE_CLASS_MAPPINGS = {}
NODE_DISPLAY_NAME_MAPPINGS = {}
+1
View File
@@ -0,0 +1 @@
# gates/routes.py — stub (filled in Task 10)
+9
View File
@@ -0,0 +1,9 @@
[project]
name = "comfyui-datasete-gates"
version = "0.1.0"
description = "Dataset Gates — Image Pool (Grid) node for ComfyUI"
requires-python = ">=3.10"
[tool.comfy]
PublisherId = "ethanfel"
DisplayName = "ComfyUI Datasete Gates"
View File
View File
+2
View File
@@ -0,0 +1,2 @@
import { app } from "../../scripts/app.js";
app.registerExtension({ name: "datasete.gates.imagepool" });