88 lines
1.8 KiB
TOML
88 lines
1.8 KiB
TOML
[build-system]
|
|
requires = ["setuptools>=70.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "SmartSaveImage"
|
|
version = "2.0.0"
|
|
description = "A visual, template-driven image saver for ComfyUI"
|
|
authors = [
|
|
{name = "kj", email = "2990346238@qq.com"}
|
|
]
|
|
readme = "README.md"
|
|
license = {text = "MIT license"}
|
|
requires-python = ">=3.10"
|
|
classifiers = []
|
|
dependencies = [
|
|
|
|
]
|
|
|
|
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"bump-my-version",
|
|
"coverage", # testing
|
|
"mypy", # linting
|
|
"pre-commit", # runs linting on commit
|
|
"pytest", # testing
|
|
"ruff", # linting
|
|
]
|
|
|
|
[project.urls]
|
|
Repository = "https://github.com/kjqwer/SmartSaveImage"
|
|
BugTracker = "https://github.com/kjqwer/SmartSaveImage/issues"
|
|
Documentation = "https://github.com/kjqwer/SmartSaveImage/wiki"
|
|
|
|
|
|
[tool.comfy]
|
|
PublisherId = "kjqwer"
|
|
DisplayName = "SmartSaveImage"
|
|
Icon = ""
|
|
Tags = []
|
|
Repository = "https://github.com/kjqwer/SmartSaveImage"
|
|
|
|
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"
|