hamzabouajila's picture
feat: enhance evaluation queue reliability and add stale job recovery
2f1e30c
[project]
name = "tunisianleaderboard"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"apscheduler>=3.11.0",
"black>=25.1.0",
"datasets>=3.6.0",
"gradio-client>=1.10.4",
"gradio-leaderboard==0.0.13",
"gradio[oauth]>=5.35.0",
"huggingface-hub>=0.18.0",
"ipykernel>=6.29.5",
"ipywidgets>=8.1.7",
"matplotlib>=3.10.3",
"numpy>=2.3.1",
"pandas>=2.3.0",
"pydantic>=2.11.7",
"python-dateutil>=2.9.0.post0",
"python-dotenv>=1.1.1",
"scikit-learn>=1.7.0",
"sentencepiece>=0.2.0",
"tokenizers>=0.15.0",
"torch>=2.7.1",
"tqdm>=4.67.1",
"transformers>=4.53.1",
]
[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