-
Notifications
You must be signed in to change notification settings - Fork 225
Expand file tree
/
Copy pathpyproject.toml
More file actions
98 lines (94 loc) · 2.2 KB
/
Copy pathpyproject.toml
File metadata and controls
98 lines (94 loc) · 2.2 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "cyberverse"
version = "0.1.0"
description = "CyberVerse - Real-time Interactive Digital Human Platform"
requires-python = ">=3.10"
dependencies = [
"numpy>=1.24",
"pydantic>=2.0",
"pyyaml>=6.0",
]
[project.optional-dependencies]
inference = [
"grpcio>=1.80",
"grpcio-tools>=1.80",
"grpcio-health-checking>=1.60",
]
llm = ["openai>=1.0"]
litellm = ["litellm>=1.80,<1.87"]
tts = ["openai>=1.0", "scipy>=1.10"]
omni = ["websockets>=12.0", "python-socks[asyncio]>=2.0"]
voice_llm = ["websockets>=12.0", "python-socks[asyncio]>=2.0"]
qwen = ["openai>=1.0", "websockets>=12.0", "python-socks[asyncio]>=2.0", "scipy>=1.10"]
rag = [
"langchain>=1.0",
"langchain-core>=1.0",
"langchain-openai>=1.0",
"langchain-text-splitters>=1.0",
"langchain-community>=0.4",
"langchain-chroma>=1.0",
"pypdf>=5.0",
"python-docx>=1.1",
]
milvus = ["langchain-milvus>=0.2", "pymilvus>=2.5"]
flash_head = [
"opencv-python-headless>=4.12.0",
"diffusers>=0.34.0",
"transformers==4.57.3",
"tokenizers>=0.20.3",
"accelerate>=1.8.1",
"tqdm",
"imageio",
"easydict",
"ftfy",
"imageio-ffmpeg",
"scikit-image",
"loguru",
"gradio==5.50.0",
"xfuser==0.4.5",
"pyloudnorm",
"decord",
"xformers==0.0.32.post1",
"librosa",
"mediapipe>=0.10.13",
"flask",
"nvidia-nccl-cu12==2.27.3",
]
live_act = [
"opencv-python>=4.11.0",
"diffusers>=0.31.0",
"transformers>=4.49.0",
"tokenizers>=0.20.3",
"accelerate>=1.12.1",
"tqdm",
"imageio",
"easydict",
"ftfy",
"imageio-ffmpeg",
"scikit-image",
"loguru",
"xfuser==0.4.5",
"einops",
"safetensors",
]
asr = ["openai-whisper>=20231117"]
dev = [
"pytest>=7.0",
"pytest-asyncio>=0.21",
]
agent = [
]
all = [
"cyberverse[inference,llm,tts,omni,asr,rag,milvus,flash_head,live_act,agent]",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
markers = [
"integration: 需要 GPU、权重与 flash_head 等重依赖的端到端测试(较慢)",
]
[tool.setuptools.packages.find]
include = ["inference*"]