-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpyproject.toml
35 lines (29 loc) · 895 Bytes
/
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
[build-system]
requires = ["setuptools>=64.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "comfystream"
description = "Build Live AI Video with ComfyUI"
version = "0.0.3"
license = { file = "LICENSE" }
dependencies = [
"asyncio",
"comfyui @ git+https://github.com/hiddenswitch/ComfyUI.git@ce3583ad42c024b8f060d0002cbe20c265da6dc8",
"toml",
"aiortc",
"aiohttp",
"twilio",
]
[project.optional-dependencies]
dev = ["pytest"]
[project.urls]
repository = "https://github.com/yondonfu/comfystream"
[tool.comfy]
PublisherId = "livepeer-comfystream"
DisplayName = "ComfyStream"
Icon = "https://avatars.githubusercontent.com/u/25355022?s=48&v=4" # SVG, PNG, JPG or GIF (MAX. 800x400px)
[tool.setuptools]
package-dir = {"" = "src"}
packages = {find = {where = ["src", "nodes"]}}
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}