Spaces:
Running
Running
File size: 969 Bytes
3473f96 f5f9b38 3473f96 f5f9b38 bcec9c2 3473f96 74487c6 6e9b61e de9f510 3473f96 f5f9b38 |
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 |
[project]
name = "inferbench"
version = "0.1.0"
description = "InferBench - AI inference benchmarking tool"
requires-python = ">=3.12"
dependencies = [
"numpy",
"opencv-python",
"pillow",
"python-dotenv",
"requests",
"tqdm",
"datasets==3.6.0",
"fal-client>=0.5.9",
"hpsv2>=1.2.0",
"huggingface-hub>=0.30.2",
"image-reward>=1.5",
"replicate>=1.0.4",
"t2v-metrics>=1.2",
"together>=1.5.5",
"torch>=2.7.0",
"torchmetrics>=1.7.1",
"clip",
"diffusers<=0.31",
"piq>=0.8.0",
"boto3>=1.39.4",
"gradio>=5.37.0",
"gradio-leaderboard>=0.0.14",
]
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["api*", "benchmark*", "dashboard*"]
exclude = ["images*", "evaluation_results*", "*.tests*"]
[tool.hatch.build.targets.wheel]
packages = ["api", "benchmark", "dashboard"]
[tool.uv]
dev-dependencies = []
|