metrics/pyproject.toml

21 строка
361 B
TOML
Исходник Обычный вид История

2021-02-22 12:42:39 +03:00
[build-system]
requires = [
"setuptools",
"wheel",
]
[tool.black]
# https://github.com/psf/black
line-length = 120
target-version = ["py38"]
exclude = "(.eggs|.git|.hg|.mypy_cache|.nox|.tox|.venv|.svn|_build|buck-out|build|dist)"
[tool.isort]
known_first_party = [
"torchmetrics",
"tests",
]
skip_glob = []
profile = "black"
line_length = 120