chore: scaffold ComfyUI-Datasete-Gates package
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
@@ -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"]
|
||||
@@ -0,0 +1,3 @@
|
||||
# gates/node.py — stub (filled in Task 9)
|
||||
NODE_CLASS_MAPPINGS = {}
|
||||
NODE_DISPLAY_NAME_MAPPINGS = {}
|
||||
@@ -0,0 +1 @@
|
||||
# gates/routes.py — stub (filled in Task 10)
|
||||
@@ -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"
|
||||
@@ -0,0 +1,2 @@
|
||||
import { app } from "../../scripts/app.js";
|
||||
app.registerExtension({ name: "datasete.gates.imagepool" });
|
||||
Reference in New Issue
Block a user