-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 1.04 KB
/
Copy pathpyproject.toml
File metadata and controls
43 lines (38 loc) · 1.04 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
[project]
name = "cacheroute"
version = "0.1.9"
description = "Compute-network-aware LLM scheduling for flexible KV cache reuse across vLLM and LMCache systems."
authors = [
{ name = "xxx", email = "xxx" }
]
readme = "README.md"
requires-python = ">=3.10"
license = { text = "Apache-2.0" }
# This is the lightweight Python package install surface. Install
# requirements.txt for the complete CacheRoute application and development
# environment; serving-image packages such as PyTorch, vLLM, and LMCache remain
# managed by the CUDA-compatible runtime image.
dependencies = [
"fastapi>=0.115.0",
"uvicorn",
"jupyter_client",
"aiohttp>=3.9.0",
"pydantic>=2.6.0",
"pyyaml>=6.0.0",
"jinja2>=3.1.0",
]
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"httpx>=0.27.0",
"black>=24.0.0",
"isort>=5.13.0",
"mypy>=1.11.0",
]
[tool.setuptools]
[tool.setuptools.packages.find]
where = ["."]
exclude = ["tests*", "docs*", "examples*"]