File: pyproject.toml

package info (click to toggle)
python-limits 4.4.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,064 kB
  • sloc: python: 7,833; makefile: 162; sh: 59
file content (25 lines) | stat: -rw-r--r-- 509 bytes parent folder | download
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"]