open-llm-leaderboard/open_llm_leaderboard
14k
1[tool.ruff]2line-length = 1203target-version = "py312"4include = ["*.py", "*.pyi", "**/pyproject.toml", "*.ipynb"]5ignore=["I","EM","FBT","TRY003","S101","D101","D102","D103","D104","D105","G004","D107","FA102"]6fixable=["ALL"]7select=["ALL"]8 9[tool.ruff.lint]10select = ["E", "F"]11fixable = ["ALL"]12ignore = ["E501"] # line too long (black is taking care of this)13 14[tool.isort]15profile = "black"16line_length = 11917 18[tool.black]19line-length = 11920 21[tool.poetry]22package-mode = false23name = "open-llm-leaderboard"24version = "0.1.0"25description = ""26authors = []27readme = "README.md"28 29[tool.poetry.dependencies]30python = "3.12.1"31apscheduler = "3.10.1"32black = "23.11.0"33click = "8.1.3"34datasets = "2.14.5"35huggingface-hub = ">=0.18.0"36matplotlib = "3.8.4"37numpy = "1.26.0"38pandas = "2.2.2"39plotly = "5.14.1"40python-dateutil = "2.8.2"41requests = "2.28.2"42sentencepiece = "^0.2.0"43tqdm = "4.65.0"44transformers = "4.41.1"45tokenizers = ">=0.15.0"46gradio-space-ci = {git = "https://huggingface.co/spaces/Wauplin/gradio-space-ci", rev = "0.2.3"}47gradio = " 4.20.0"48isort = "^5.13.2"49ruff = "^0.3.5"50gradio-leaderboard = "0.0.8"51 52[build-system]53requires = ["poetry-core"]54build-backend = "poetry.core.masonry.api"55 