forked from Kosinkadink/ComfyUI-AnimateDiff-Evolved
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (33 loc) · 1.14 KB
/
pyproject.toml
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
40
[project]
name = "comfyui-animatediff-evolved"
description = "Improved AnimateDiff integration for ComfyUI."
version = "1.2.3"
license = { file = "LICENSE" }
dependencies = [
"comfyui>=0.2.3"
]
[project.urls]
Repository = "https://github.com/Kosinkadink/ComfyUI-AnimateDiff-Evolved"
# Used by Comfy Registry https://comfyregistry.org
[tool.comfy]
PublisherId = "kosinkadink"
DisplayName = "ComfyUI-AnimateDiff-Evolved"
Icon = ""
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = [
"comfyui_animatediff_evolved",
"comfyui_animatediff_evolved.animatediff",
"comfyui_animatediff_evolved.animatediff.video_formats"
]
[tool.setuptools.package-dir]
"comfyui_animatediff_evolved" = "."
"comfyui_animatediff_evolved.animatediff" = "animatediff"
"comfyui_animatediff_evolved.animatediff.video_formats" = "animatediff/video_formats"
[project.entry-points."comfyui.custom_nodes"]
comfyui_animatediff_evolved = "comfyui_animatediff_evolved.animatediff.nodes"
comfyui_impact_pack_web_directory = "comfyui_animatediff_evolved"
[tool.setuptools.package-data]
"*" = ["**/*.js", "**/*.json"]