-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
97 lines (88 loc) · 2.59 KB
/
pyproject.toml
File metadata and controls
97 lines (88 loc) · 2.59 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "consumer-bench"
version = "0.1.0"
description = "A comprehensive benchmarking framework for evaluating GenAI applications on end-user devices"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{name = "Yile Gu"},
{name = "Rohan Kadekodi"},
{name = "Hoang Nguyen"},
{name = "Keisuke Kamahori"},
{name = "Yiyu Liu"},
{name = "Baris Kasikci"}
]
keywords = ["benchmark", "genai", "performance", "llm", "inference"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"accelerate>=1.5.0",
"aiohttp>=3.9.0",
"anthropic>=0.52.0",
"datasets>=3.0.0",
"diffusers>=0.30.0",
"fastapi>=0.115.0",
"huggingface-hub>=0.30.0",
"httpx>=0.27.0",
"instructor>=1.8.0",
"ipykernel>=6.29.0",
"librosa>=0.11.0",
"matplotlib>=3.10.0",
"mcp>=1.9.0",
"mcp-server-fetch>=2025.4.0",
"numba>=0.61.0",
"numpy>=2.0.0",
"nvidia-ml-py>=12.0.0",
"openai>=1.80.0",
"pandas>=2.2.0",
"pillow>=11.0.0",
"psutil>=7.0.0",
"pydantic>=2.11.0",
"pynvml>=12.0.0",
"PyYAML>=6.0.0",
"requests>=2.32.0",
"scikit-learn>=1.6.0",
"scipy>=1.15.0",
"seaborn>=0.13.0",
"soundfile>=0.13.0",
"torch>=2.6.0",
"torchaudio>=2.6.0",
"torchvision>=0.21.0",
"tqdm>=4.67.0",
"transformers>=4.50.0",
"uvicorn>=0.34.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"black>=23.0.0",
"flake8>=6.0.0",
]
[project.urls]
Homepage = "https://consumerbench.github.io/"
Documentation = "https://consumerbench.github.io/"
Repository = "https://github.com/efeslab/ConsumerBench"
Issues = "https://github.com/efeslab/ConsumerBench/issues"
[project.scripts]
consumerbench = "consumerbench.cli:main"
[tool.setuptools]
packages = ["consumerbench", "consumerbench.applications", "consumerbench.monitors", "consumerbench.scripts", "consumerbench.inference_backends"]
[tool.setuptools.package-dir]
consumerbench = "src"
"consumerbench.applications" = "applications"
"consumerbench.monitors" = "monitors"
"consumerbench.scripts" = "scripts"
"consumerbench.inference_backends" = "inference_backends"
[tool.setuptools.package-data]
consumerbench = ["*.yml", "*.yaml", "*.json"]