advanced / pyproject.toml
alozowski's picture
alozowski HF Staff
Add ruamel-yaml
4366589
[project]
name = "yourbench-advanced"
version = "0.1.0"
authors = [
{ name = "Sumuk Shashidhar", email = "[email protected]" },
{ name = "Alina Lozovskaia", email = "[email protected]" },
{ name = "Clémentine Fourrier", email = "[email protected]" },
{ name = "Nathan Habib", email = "[email protected]" },
]
requires-python = ">=3.12, <3.13"
dependencies = [
"yourbench",
"asyncio>=3.4.3",
"datasets>=3.3.0",
"gradio[oauth]>=5.21.0",
"loguru>=0.7.3",
"python-dotenv>=1.0.1",
"tqdm>=4.67.1",
"ruff>=0.11.2",
"lighteval[extended-tasks,math]",
"ruamel-yaml>=0.18.10",
]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.uv.sources]
yourbench = { git = "https://github.com/huggingface/yourbench.git", branch = "main" }
lighteval = { git = "https://github.com/huggingface/lighteval.git", branch = "main" }
[tool.ruff]
line-length = 119
lint.ignore = ["E501", "C901", "F841"]
lint.select = ["C", "E", "F", "I", "W"]
lint.fixable = ["A", "B", "C", "D", "E", "F", "I", "W"]
preview = true
[tool.ruff.lint.isort]
length-sort = true
lines-after-imports = 2
no-lines-before = ["standard-library", "local-folder"]
known-local-folder = ["yourbench_space"]
known-first-party = ["datasets", "huggingface_hub", "gradio"]
split-on-trailing-comma = true
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"