37 lines
554 B
TOML
37 lines
554 B
TOML
[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
|