-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
25 lines (22 loc) · 808 Bytes
/
Copy pathpyproject.toml
File metadata and controls
25 lines (22 loc) · 808 Bytes
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
[project]
name = "difforum"
description = "Modern Deforum-style animation toolkit for ComfyUI: math-driven keyframe schedules, audio reactivity, depth-aware camera warping and a Wan 2.2 video bridge."
version = "0.5.0"
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.10"
# Intentionally minimal: numpy ships with ComfyUI. No librosa/numexpr/pandas
# so the node installs cleanly on ComfyCloud and Python 3.12+.
dependencies = [
"numpy",
]
[project.urls]
Repository = "https://github.com/chillithebillis/Difforum"
[tool.comfy]
# Set PublisherId to your Comfy Registry publisher handle before `comfy node publish`.
PublisherId = "chillithebillis"
DisplayName = "Difforum"
Icon = ""
[tool.setuptools]
# Pure-source custom node; no build step required.
packages = ["core", "nodes"]