1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
[tool.versioneer]
VCS = "git"
style = "pep440-pre"
versionfile_source = "limits/_version.py"
versionfile_build = "limits/_version.py"
parentdir_prefix = "limits-"
tag_prefix = ""
[tool.ruff]
line-length = 88
indent-width = 4
exclude = ["_version.py"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
[tool.ruff.lint]
typing-modules = ["limits.typing"]
[tool.ruff.lint.isort]
required-imports = ["from __future__ import annotations"]
|