-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (26 loc) · 847 Bytes
/
pyproject.toml
File metadata and controls
32 lines (26 loc) · 847 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
[build-system]
requires = ["hatchling>=1.22"]
build-backend = "hatchling.build"
[project]
name = "vllm-kunlun"
version = "0.15.1.dev0"
description = "vLLM Kunlun3 backend plugin"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "kunlun"}]
dependencies = []
[project.scripts]
vllm-kunlun = "vllm_kunlun.cmdline:main"
[project.entry-points."vllm.platform_plugins"]
kunlun = "vllm_kunlun:register"
[project.entry-points."vllm.general_plugins"]
kunlun_model = "vllm_kunlun:register_model"
kunlun_reasoning_parser = "vllm_kunlun:register_reasoning_parser"
kunlun_tool_parser = "vllm_kunlun:register_tool_parser"
[tool.hatch.build]
packages = ["vllm_kunlun"]
include = ["vllm_kunlun/conf/*", "vllm_kunlun/data/*"]
[tool.hatch.build.targets.wheel]
packages = ["vllm_kunlun"]
output-dir = "output/dist"