-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 787 Bytes
/
Copy pathpyproject.toml
File metadata and controls
38 lines (34 loc) · 787 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mini-vllm"
version = "0.1.0"
description = "From-scratch LLM inference engine: continuous batching + paged KV-cache"
requires-python = ">=3.10"
dependencies = [
"torch>=2.12.0",
"transformers>=4.45.0",
"tokenizers>=0.20.0",
"numpy>=1.26.0",
"tqdm>=4.66.0",
"pydantic>=2.0.0",
"fastapi>=0.115.0",
"uvicorn[standard]>=0.30.0",
"httpx>=0.27.0",
"accelerate>=0.34.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
]
gpu = [
"triton>=3.0.0",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["mini_vllm*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"