-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (33 loc) · 1.07 KB
/
Copy pathpyproject.toml
File metadata and controls
39 lines (33 loc) · 1.07 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "comfyui-nukemax-nodes"
version = "0.5.1"
description = "Hybrid VFX/AI bridge nodes for ComfyUI: roto, FFT-guided gen, PBR relight, audio-reactive, optical flow compositing, smart edges."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "Code2Collapse" }]
dependencies = [
"torch>=2.0",
"numpy>=1.24",
"opencv-python>=4.8",
"pillow>=10.0",
]
[project.urls]
Repository = "https://github.com/Code2Collapse/ComfyUI-NukeNodePack"
Issues = "https://github.com/Code2Collapse/ComfyUI-NukeNodePack/issues"
[tool.comfy]
PublisherId = "Code2Collapse"
DisplayName = "NukeMax Nodes"
Icon = "https://i.pinimg.com/736x/5d/52/19/5d5219ef27c1530bea027ff95d352e05.jpg"
[project.optional-dependencies]
audio = ["librosa>=0.10", "soundfile>=0.12"]
flow = ["opencv-python-headless>=4.8"]
test = ["pytest>=7", "scipy>=1.10"]
[tool.setuptools.packages.find]
include = ["nukemax*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"