-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (29 loc) · 865 Bytes
/
pyproject.toml
File metadata and controls
34 lines (29 loc) · 865 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
30
31
32
33
34
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "stratacache"
version = "0.2.0"
description = "Standalone tiered artifact cache with CPU+CXL backends and write-through/write-back links."
readme = "README.md"
requires-python = ">=3.10"
license = "Apache-2.0"
authors = [{ name = "StrataCache Contributors" }]
dependencies = [
"PyYAML>=6.0",
"vllm==0.13.0",
"psutil>=5.9.0",
"sortedcontainers>=2.4",
]
[project.optional-dependencies]
# Telemetry exporters and GPU/PCM tooling are off the critical path; opt
# in only when needed.
telemetry = ["wandb>=0.15.0"]
gpu-telemetry = ["cupti-python==12.8.0"]
pcm = ["pybind11>=2.6.0"]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"stratacache" = ["config.yaml"]