File size: 369 Bytes
3a464db | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | [build-system]
requires = ["setuptools >= 64"]
build-backend = "setuptools.build_meta"
[tool.ruff]
target-version = "py39"
indent-width = 4
[tool.ruff.lint.isort]
lines-after-imports = 2
known-first-party = ["lmflow"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
docstring-code-format = true
skip-magic-trailing-comma = false
line-ending = "auto" |