GridNet-HD-Leaderboard / pyproject.toml
agressin's picture
++
aa3e601
raw
history blame contribute delete
744 Bytes
[project]
name = "GridNet-HD-Leaderboard"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
dependencies = [
"gradio[oauth]==5.30.0",
"uvicorn>=0.34.2",
]
[tool.ruff]
# Enable pycodestyle (`E`) and Pyflakes (`F`) codes by default.
select = ["E", "F"]
ignore = ["E501"] # line too long (black is taking care of this)
line-length = 119
fixable = ["A", "B", "C", "D", "E", "F", "G", "I", "N", "Q", "S", "T", "W", "ANN", "ARG", "BLE", "COM", "DJ", "DTZ", "EM", "ERA", "EXE", "FBT", "ICN", "INP", "ISC", "NPY", "PD", "PGH", "PIE", "PL", "PT", "PTH", "PYI", "RET", "RSE", "RUF", "SIM", "SLF", "TCH", "TID", "TRY", "UP", "YTT"]
[tool.isort]
profile = "black"
line_length = 119
[tool.black]
line-length = 119