-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
43 lines (35 loc) · 995 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
36
37
38
39
40
41
42
43
[project]
name = "ComfyUI_Ib_CustomNodes"
version = "0.2.2"
description = 'Load Image From Path, PIL.Image'
readme = "README.md"
# requires-python = ">=3.8"
license = "MIT"
keywords = ["comfyui"]
dynamic = ["dependencies"]
[project.urls]
Homepage = "https://github.com/Chaoses-Ib/ComfyUI_Ib_CustomNodes"
comfyui-legacy = "https://github.com/Chaoses-Ib/comfyui-legacy"
[build-system]
requires = ["hatchling", "hatch-requirements-txt"]
build-backend = "hatchling.build"
[tool.hatch.metadata.hooks.requirements_txt]
files = ["requirements.txt"]
[tool.hatch.build.targets.sdist]
packages = ["."]
[tool.hatch.build.targets.wheel]
packages = ["."]
exclude = [
"*.md",
"/images",
"/docs",
"/examples",
"/workflow_examples",
"/tests",
]
[tool.hatch.build.targets.sdist.sources]
"." = "ComfyUI_Ib_CustomNodes"
[tool.hatch.build.targets.wheel.sources]
"." = "ComfyUI_Ib_CustomNodes"
[project.entry-points."comfyui_legacy.custom_nodes"]
ComfyUI_Ib_CustomNodes = "ComfyUI_Ib_CustomNodes"