CoolFace
Apppublic

TIGER-Lab/GenAI-Arena

sourceHugging Facemitupdated 1y agoView on Hugging Face
296likes
pyproject.toml28 linesDownload Raw Back to arena_elo
1[build-system]2requires = ["setuptools>=61.0"]3build-backend = "setuptools.build_meta"4 5[project]6name = "arena_elo"7version = "0.2.35"8description = "Elo rating system for WildVision Bench Arena"9readme = "README.md"10requires-python = ">=3.9"11classifiers = [12    "Programming Language :: Python :: 3",13    "License :: OSI Approved :: Apache Software License",14]15dependencies = [16    "numpy", "prompt_toolkit>=3.0.0", "uvicorn","polyglot", "pyicu", "pycld2", "morfessor", "scikit-learn",17    "pytz", "tqdm", "pandas", "plotly", "fire", "Pillow"18]19 20[project.urls]21"Homepage" = "https://github.com/WildVision-Bench/Arena-Elo"22"Bug Tracker" = "https://github.com/WildVision-Bench/Arena-Elo/issues"23 24[tool.setuptools.packages.find]25exclude = ["assets*", "benchmark*", "docs", "dist*", "playground*", "scripts*", "tests*"]26 27[tool.wheel]28exclude = ["assets*", "benchmark*", "docs", "dist*", "playground*", "scripts*", "tests*"]