chore: Initial commit

This commit is contained in:
2026-07-19 18:33:58 +01:00
commit 0d68751a78
5 changed files with 170 additions and 0 deletions

36
pyproject.toml Normal file
View File

@@ -0,0 +1,36 @@
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "spoolstore"
version = "0.1.0"
authors = [{ name = "Didas72" }]
requires-python = ">=3.9"
dependencies = [ "solidpython2", "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",
]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[tool.mypy]
strict = true