Files
Ethanfel 0ba3d81fbf docs: expand README to cover the full node suite
Document all five nodes (Image Pool, Pool Profile, Folder Image Loader,
Image Gate, Text Gate) with IO tables and behavior, plus shared concepts
(blocking gates, mask polarity, storage/profiles layout) and dev layout.
Refresh the stale pyproject description.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-21 20:23:52 +02:00

19 lines
709 B
TOML

[project]
name = "comfyui-datasete-gates"
version = "0.1.0"
description = "Dataset Gates — image pool, folder loader, and manual routing/text gates for ComfyUI dataset curation"
requires-python = ">=3.10"
[tool.comfy]
PublisherId = "ethanfel"
DisplayName = "ComfyUI Datasete Gates"
[tool.pytest.ini_options]
# The repo-root __init__.py is required by ComfyUI but breaks pytest's default
# "prepend" collection if tests/ is a package (pytest walks up the __init__.py
# chain and tries to import the root package, whose relative imports fail
# outside ComfyUI). Keeping tests/ a non-package dir avoids that; pythonpath
# makes `gates` importable from the repo root.
pythonpath = ["."]
testpaths = ["tests"]