File size: 865 Bytes
835d0a5
 
 
 
 
cb5c094
835d0a5
 
 
 
cb5c094
835d0a5
 
 
 
 
 
 
 
27e1d19
835d0a5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27e1d19
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
45
46
[project]
channels = ["conda-forge", "huggingface"]
description = "Add a short description here"
name = "open-llm-leaderboard-results-to-modelcard"
platforms = ["win-64"]
version = "1.0.0"

[tasks]

[dependencies]
python = "3.12.*"
huggingface_hub = ">=0.26.2,<0.27"
ruff = ">=0.8.1,<0.9"

[pypi-dependencies]
gradio = "==5.7.1"
pytablewriter = ">=1.2.0, <2"
gradio-space-ci = { git = "https://huggingface.co/spaces/Wauplin/gradio-space-ci", rev = "0.2.3" }
beautifulsoup4 = ">=4.12.3, <5"
datasets = ">=3.1.0, <4"

[tool.ruff]
exclude = [".pixi", "__pycache__"]
ignore = ["E501", "E402"]
select = [
    # pycodestyle
    "E",
    # Pyflakes
    "F",
    # Warnings
    "W",
    # isort
    "I",
    # pyupgrade
    "UP",
    # flake8-bugbear
    "B",
    # flake8-simplify
    "SIM",
    # flake8-quotes
    "Q",
    # flake8-async
    "ASYNC"
]
line-length = 132