pyproject.toml
1002 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
43
44
45
46
47
48
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ai_server"
version = "0.1.0"
description = "Add your description here"
requires-python = ">=3.12"
dependencies = [
"fastapi==0.136.1",
"uvicorn[standard]==0.46.0",
"pydantic==2.13.4",
"numpy>=1.24.0",
"aiohttp>=3.8.0",
"aabd==0.4.8",
"path==17.1.1",
"omegaconf==2.3.0",
"packaging==26.2",
]
[project.optional-dependencies]
# embedding-server 专用依赖
embedding = [
"elasticsearch==9.3.0",
]
football-replay-match = [
"Pillow==12.2.0",
"av==13.1.0",
"confluent_kafka==2.6.1",
"langchain-openai>=1.1.15",
"opencv-contrib-python==4.13.0.92"
]
# task-server 专用依赖
task = [
]
[tool.uv]
package = true
[tool.hatch.build.targets.wheel]
packages = ["src/embedding_sever"]
[project.scripts]
embedding-server = "embedding_sever.main:main"
#task-server = "task_server.main:main"
football-repaly-match-server = "football_replay_match.main:main"