-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (68 loc) · 1.86 KB
/
pyproject.toml
File metadata and controls
84 lines (68 loc) · 1.86 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[build-system]
requires = ["setuptools>=70.0"]
build-backend = "setuptools.build_meta"
[project]
name = "ComfyUI-Prompt-Companion"
version = "0.1.0"
description = "A node that lets you save and reuse parts of prompts (embeddings, quality keywords, and so on.)"
authors = [
{name = "John Cantu", email = "jfcantu@gmail.com"}
]
readme = "README.md"
license = {text = "MIT license"}
requires-python = ">=3.10"
classifiers = []
dependencies = [
"aiohttp", # for API route handling in ComfyUI
]
[project.optional-dependencies]
dev = [
"mypy", # linting
"pytest", # testing
"ruff", # linting
]
[project.urls]
Repository = "https://github.com/jfcantu/ComfyUI-Prompt-Companion"
BugTracker = "https://github.com/jfcantu/ComfyUI-Prompt-Companion/issues"
Documentation = "https://github.com/jfcantu/ComfyUI-Prompt-Companion/wiki"
[tool.comfy]
PublisherId = "jfcantu"
DisplayName = "ComfyUI Prompt Companion"
Icon = ""
Tags = []
Repository = "https://github.com/jfcantu/prompt_companion"
includes = []
[tool.setuptools.package-data]
"*" = ["*.*"]
[tool.pytest.ini_options]
minversion = "8.0"
testpaths = [
"tests",
]
[tool.mypy]
files = "."
# Use strict defaults
strict = true
warn_unreachable = true
warn_no_return = true
[[tool.mypy.overrides]]
# Don't require test functions to include types
module = "tests.*"
allow_untyped_defs = true
disable_error_code = "attr-defined"
[tool.ruff]
# extend-exclude = ["static", "ci/templates"]
line-length = 140
src = ["src", "tests"]
target-version = "py39"
# Add rules to ban exec/eval
[tool.ruff.lint]
select = [
"S102", # exec-builtin
"S307", # eval-used
"W293",
"F", # The "F" series in Ruff stands for "Pyflakes" rules, which catch various Python syntax errors and undefined names.
# See all rules here: https://docs.astral.sh/ruff/rules/#pyflakes-f
]
[tool.ruff.lint.flake8-quotes]
inline-quotes = "double"