chore: Initial commit

This commit is contained in:
2026-08-15 23:24:21 +01:00
commit 73663d861b
5 changed files with 118 additions and 0 deletions
+38
View File
@@ -0,0 +1,38 @@
[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