-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (33 loc) · 1.14 KB
/
Copy pathpyproject.toml
File metadata and controls
40 lines (33 loc) · 1.14 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
40
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "bizyui"
description = "Web resources for [a/BizyAir](https://github.com/siliconflow/BizyAir) which contains Comfy Nodes that can run in any environment."
license = { file = "LICENSE" }
authors = [{ name = "SiliconFlow", email = "yaochi@siliconflow.cn" }]
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dynamic = ["version"]
[tool.setuptools.dynamic]
version = { file = ["version.txt"] }
[project.urls]
Repository = "https://github.com/siliconflow/BizyAir"
# Used by Comfy Registry https://comfyregistry.org
[tool.comfy]
PublisherId = "siliconflow"
DisplayName = "☁️BizyAir"
Icon = "https://framerusercontent.com/images/4li2PjWxZJmoGkzXRMJWU1rJmI.svg"
[tool.setuptools]
packages = ["bizyui"]
package-dir = { bizyui = "bizyui" }
include-package-data = true
[tool.setuptools.package-data]
"bizyui" = ["**/*"]
[tool.setuptools.exclude-package-data]
"*" = ["__pycache__/*", "*/__pycache__/*"]