forked from Comfy-Org/workflow_templates
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (48 loc) · 1.64 KB
/
Copy pathpyproject.toml
File metadata and controls
54 lines (48 loc) · 1.64 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
49
50
51
52
53
54
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "comfyui_workflow_templates"
version = "0.11.43"
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.314",
"comfyui-workflow-templates-json==0.1.49",
"comfyui-workflow-templates-media-api==0.3.84",
"comfyui-workflow-templates-media-video==0.3.101",
"comfyui-workflow-templates-media-image==0.3.160",
"comfyui-workflow-templates-media-other==0.3.229",
"comfyui-workflow-templates-media-assets-01==0.1.29",
]
[project.optional-dependencies]
json = ["comfyui-workflow-templates-json==0.1.49"]
assets = ["comfyui-workflow-templates-media-assets-01==0.1.29"]
api = ["comfyui-workflow-templates-media-api==0.3.84"]
video = ["comfyui-workflow-templates-media-video==0.3.101"]
image = ["comfyui-workflow-templates-media-image==0.3.160"]
other = ["comfyui-workflow-templates-media-other==0.3.229"]
all = [
"comfyui-workflow-templates-json==0.1.49",
"comfyui-workflow-templates-media-assets-01==0.1.29",
"comfyui-workflow-templates-media-api==0.3.84",
"comfyui-workflow-templates-media-video==0.3.101",
"comfyui-workflow-templates-media-image==0.3.160",
"comfyui-workflow-templates-media-other==0.3.229",
]
[tool.setuptools.packages.find]
where = ["packages/meta/src"]
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F"]