InferBench / pyproject.toml
davidberenstein1957's picture
feat: add pyproject.toml for project configuration and dependencies
3473f96
raw
history blame
654 Bytes
[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.5.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",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
dev-dependencies = []