-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpyproject.toml
58 lines (51 loc) · 1.43 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ComfyUI-EasyNodes"
version = "1.2.7"
description = "Makes creating new nodes for ComfyUI a breeze."
readme = "readme.md"
authors = [{ name = "Andrew Harp", email = "[email protected]" }]
license = {file = "LICENSE"}
requires-python = ">=3.10"
dependencies = [
"torch",
"pillow",
"ansi2html",
"colorama",
"coloredlogs",
"numpy",
"openai",
]
[project.urls]
"Homepage" = "https://github.com/andrewharp/ComfyUI-EasyNodes"
"Bug Reports" = "https://github.com/andrewharp/ComfyUI-EasyNodes/issues"
"Source" = "https://github.com/andrewharp/ComfyUI-EasyNodes/"
[tool.setuptools.packages.find]
where = ["."]
include = ["easy_nodes"]
exclude = ["web"]
[tool.setuptools.package-data]
"*" = ["web/**/*"]
[tool.poetry]
name = "comfyui-easynodes"
version = "1.0.6"
description = "Makes creating new nodes for ComfyUI a breeze."
authors = ["Andrew Harp <[email protected]>"]
license = "MIT"
homepage = "https://github.com/andrewharp/ComfyUI-EasyNodes"
repository = "https://github.com/andrewharp/ComfyUI-EasyNodes"
documentation = "https://github.com/andrewharp/ComfyUI-EasyNodes"
readme = "readme.md"
packages = [{ include = "easy_nodes" }]
include = ["easy_nodes/web/**/*"]
[tool.poetry.dependencies]
python = ">=3.10"
torch = "*"
pillow = "*"
ansi2html = "*"
colorama = "*"
coloredlogs = "*"
numpy = "*"
openai = "*"