-
Notifications
You must be signed in to change notification settings - Fork 86
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (42 loc) · 1.32 KB
/
pyproject.toml
File metadata and controls
48 lines (42 loc) · 1.32 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
41
42
43
44
45
46
47
48
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "comfyui_workflow_templates"
version = "0.9.62"
description = "ComfyUI workflow templates package"
readme = "README.md"
requires-python = ">=3.9"
license = {text = "MIT"}
authors = [
{name = "Comfy-Org"}
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"comfyui-workflow-templates-core==0.3.215",
"comfyui-workflow-templates-media-api==0.3.70",
"comfyui-workflow-templates-media-video==0.3.80",
"comfyui-workflow-templates-media-image==0.3.132",
"comfyui-workflow-templates-media-other==0.3.181",
]
[project.optional-dependencies]
api = ["comfyui-workflow-templates-media-api==0.3.70"]
video = ["comfyui-workflow-templates-media-video==0.3.80"]
image = ["comfyui-workflow-templates-media-image==0.3.132"]
other = ["comfyui-workflow-templates-media-other==0.3.181"]
all = [
"comfyui-workflow-templates-media-api==0.3.70",
"comfyui-workflow-templates-media-video==0.3.80",
"comfyui-workflow-templates-media-image==0.3.132",
"comfyui-workflow-templates-media-other==0.3.181",
]
[tool.setuptools.packages.find]
where = ["packages/meta/src"]
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F"]