davidberenstein1957 commited on
Commit
3473f96
·
1 Parent(s): 28bf806

feat: add pyproject.toml for project configuration and dependencies

Browse files
Files changed (1) hide show
  1. pyproject.toml +33 -0
pyproject.toml ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [project]
2
+ name = "inferbench"
3
+ version = "0.1.0"
4
+ description = "InferBench - AI inference benchmarking tool"
5
+ requires-python = ">=3.12"
6
+ dependencies = [
7
+ "numpy",
8
+ "opencv-python",
9
+ "pillow",
10
+ "python-dotenv",
11
+ "requests",
12
+ "tqdm",
13
+ "datasets>=3.5.0",
14
+ "fal-client>=0.5.9",
15
+ "hpsv2>=1.2.0",
16
+ "huggingface-hub>=0.30.2",
17
+ "image-reward>=1.5",
18
+ "replicate>=1.0.4",
19
+ "t2v-metrics>=1.2",
20
+ "together>=1.5.5",
21
+ "torch>=2.7.0",
22
+ "torchmetrics>=1.7.1",
23
+ "clip",
24
+ "diffusers<=0.31",
25
+ "piq>=0.8.0",
26
+ ]
27
+
28
+ [build-system]
29
+ requires = ["hatchling"]
30
+ build-backend = "hatchling.build"
31
+
32
+ [tool.uv]
33
+ dev-dependencies = []