File size: 1,263 Bytes
e44a1e5 04dab39 e44a1e5 2f1e30c e44a1e5 742dfc3 28e88f2 e44a1e5 9d7aae7 e44a1e5 a04b287 |
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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
[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
|