mirror of
https://github.com/Bing-su/adetailer.git
synced 2026-01-26 19:29:54 +00:00
24 lines
625 B
TOML
24 lines
625 B
TOML
[project]
|
|
name = "adetailer"
|
|
description = "An object detection and auto-mask extension for stable diffusion webui."
|
|
authors = [
|
|
{name = "dowon", email = "ks2515@naver.com"},
|
|
]
|
|
requires-python = ">=3.9,<3.12"
|
|
readme = "README.md"
|
|
license = {text = "AGPL-3.0"}
|
|
|
|
[project.urls]
|
|
repository = "https://github.com/Bing-su/adetailer"
|
|
|
|
[tool.isort]
|
|
profile = "black"
|
|
known_first_party = ["launch", "modules"]
|
|
|
|
[tool.ruff]
|
|
select = ["A", "B", "C4", "E", "F", "I001", "ISC", "N", "PIE", "PT", "RET", "SIM", "UP", "W"]
|
|
ignore = ["B008", "B905", "E501", "F401", "UP007"]
|
|
|
|
[tool.ruff.isort]
|
|
known-first-party = ["launch", "modules"]
|