-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (34 loc) · 846 Bytes
/
Copy pathpyproject.toml
File metadata and controls
42 lines (34 loc) · 846 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
35
36
37
38
39
40
41
42
[project]
name = "cacheroute"
version = "0.1.8"
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" }
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*"]