Spaces:
Runtime error
Runtime error
File size: 543 Bytes
576f5ef |
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 |
[project]
name = "leaderboard"
version = "0.1.0"
description = "Transformers.js Benchmark Leaderboard - Display benchmark results from HuggingFace Dataset"
requires-python = ">=3.13"
dependencies = [
"gradio>=5.49.1",
"huggingface-hub>=0.35.3",
"pandas>=2.3.3",
"python-dotenv>=1.1.1",
]
[project.scripts]
leaderboard = "leaderboard.app:create_leaderboard_ui"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/leaderboard"]
[tool.uv]
package = true
|