-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
50 lines (45 loc) · 1.11 KB
/
pyproject.toml
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
44
45
46
47
48
49
50
[project]
name = "gpt_server"
version = "0.3.5"
description = "gpt_server是一个用于生产级部署LLMs或Embedding的开源框架。"
readme = "README.md"
license = { text = "Apache 2.0" }
authors = [{ name = "Yu Liu", email = "[email protected]" }]
requires-python = ">=3.10"
dependencies = [
"accelerate>=1.0.1",
"fastapi==0.114.1",
"ffmpy",
"fschat==0.2.36",
"gradio==4.26.0",
"infinity-emb[all]==0.0.73",
"lmdeploy==0.6.2",
"loguru>=0.7.2",
"openai==1.55.3",
"setuptools==75.2.0",
"streamlit==1.39.0",
"torch==2.5.1",
"torchvision==0.20.1",
"transformers==4.45.2",
"vllm==0.6.6.post1",
"qwen_vl_utils",
"evalscope[perf]==0.7.0",
"modelscope==1.20.1",
"edge-tts>=7.0.0",
]
[tool.uv]
override-dependencies = [
"setuptools==75.2.0",
"torchvision==0.20.1",
"torch==2.5.1",
"triton",
"outlines==0.1.11",
]
[[tool.uv.index]]
url = "https://pypi.tuna.tsinghua.edu.cn/simple"
default = true
[project.scripts]
gpt_server = "gpt_server.cli:main"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"