-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (24 loc) · 852 Bytes
/
Copy pathpyproject.toml
File metadata and controls
29 lines (24 loc) · 852 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "llm-local-performance-test"
version = "0.1.0"
description = "Benchmark local hardware and estimate annual LLM token throughput (Ollama + microbenchmarks)."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "Apache-2.0" }
dependencies = [
"psutil>=5.9.0",
]
[project.urls]
Homepage = "https://github.com/evilmucedin/llm-local-performance-test"
Repository = "https://github.com/evilmucedin/llm-local-performance-test"
Issues = "https://github.com/evilmucedin/llm-local-performance-test/issues"
[project.scripts]
llm-local-perf = "llm_local_perf.__main__:main"
cursor-ollama = "llm_local_perf.cursor_ollama:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
llm_local_perf = ["data/*.txt"]