Skip to content

Commit 63846e2

Browse files
committed
+ update pyproject.toml according to official recommendations
1 parent 16ca2d7 commit 63846e2

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

pyproject.toml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,27 @@
11
[project]
22
name = "string-constructor"
3-
description = "String formatting (compiling text from pieces) made for humans:\n• Turn parts of prompt into a dictionary - to share them all across the entire workflow as a single connection.\n• Compose your prompt in-place from these snippets and regular text - with just one text field.\n• Easily update the dictionary down the line - get different prompts from the same template.\n• Reference text chunks within each other to build complex hierarchies of self-updating prompts.\n• A true time-saver for regional prompting (aka area composition)."
43
version = "1.1.0"
4+
description = "String formatting (compiling text from pieces) made for humans:\n• Turn parts of prompt into a dictionary - to share them all across the entire workflow as a single connection.\n• Compose your prompt in-place from these snippets and regular text - with just one text field.\n• Easily update the dictionary down the line - get different prompts from the same template.\n• Reference text chunks within each other to build complex hierarchies of self-updating prompts.\n• A true time-saver for regional prompting (aka area composition)."
5+
license = {file = "LICENSE.md"}
6+
readme = "README.md"
57
authors = [
68
{name = "Lex Darlog"}
79
]
8-
license = {file = "LICENSE.md"}
9-
readme = "README.md"
10+
requires-python = ">=3.7"
1011
dependencies = ["frozendict"]
12+
classifiers = [
13+
# https://docs.comfy.org/registry/specifications#classifiers-recommended
14+
"Operating System :: OS Independent",
15+
]
1116

1217
[project.urls]
1318
Repository = "https://github.com/Lex-DRL/ComfyUI-StringConstructor"
19+
"Feedback/Bugs/Feature Requests" = "https://github.com/Lex-DRL/ComfyUI-StringConstructor/issues"
1420
# Used by Comfy Registry https://comfyregistry.org
1521

1622
[tool.comfy]
1723
PublisherId = "lex-drl"
1824
DisplayName = "String Constructor (Text-Formatting)"
19-
Icon = ""
25+
# Icon = "https://raw.githubusercontent.com/username/repo/main/icon.png"
26+
# Banner = "https://raw.githubusercontent.com/username/repo/main/banner.png"
27+
# requires-comfyui = ">=0.3.51" # Node schema v3 released # TODO

0 commit comments

Comments
 (0)