Files
tag-3d/pyproject.toml
T
2026-08-15 23:24:21 +01:00

39 lines
570 B
TOML

[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "tag_3d"
version = "0.1.0"
authors = [{ name = "Didas72" }]
requires-python = ">=3.9"
dependencies = [ "solidpython2 == 2.1.*", "libdsps" ]
[tool.ruff]
line-length = 120
indent-width = 4
[tool.ruff.lint]
select = ["ALL"]
ignore = [
# Conflicting
"D203",
"D212",
"COM812",
# Allow 'TODO' and 'HACK' in code
"FIX002",
"TD002",
"TD003",
"FIX004",
"CPY001"
]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[tool.mypy]
strict = true