-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (56 loc) · 1.54 KB
/
pyproject.toml
File metadata and controls
63 lines (56 loc) · 1.54 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
[project]
name = "ghoshell-moss"
version = "0.1.0-alpha"
description = "LLM-oriented operating system shell, providing interpreter for llm to control everything"
authors = [{ name = "thirdgerb" }, { name = "17wang" }]
license = { text = "Apache License 2.0" }
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"ghoshell-common>=0.5.0",
"ghoshell-container>=0.3.1",
"openai>=2.8.1",
"pillow>=12.1.0",
"python-frontmatter>=1.1.0",
]
[project.optional-dependencies]
zmq = ["zmq>=0.0.0", "aiozmq>=1.0.0", "psutil>=7.2.1"]
mcp = ["mcp[cli]>=1.17.0"]
wss = ["websockets>=15.0.1"]
redis = ["fakeredis>=2.32.1", "redis>=7.0.1"]
audio = ["pulsectl>=24.12.0", "pyaudio>=0.2.14", "scipy>=1.15.3"]
# 所有测试性的依赖放一起. 注意, 由于 live2d-py 0.5.0 以上版本依赖 python 3.12, 所以需要设置本地 python
contrib = [
"litellm>=1.78.5",
"live2d-py>=0.5.4,<0.6.0",
"mermaid-py>=0.8.1",
"mss>=10.1.0",
"prompt-toolkit>=3.0.52",
"pygame>=2.6.1",
"pyqt6>=6.10.2",
"python-mpv-jsonipc>=1.2.1",
"rich>=14.2.0",
"javascript>=1!1.2.6",
"opencv-python>=4.13.0.92",
"loadenv>=0.1.1",
"pymupdf>=1.27.1",
]
[tool.setuptools]
packages = ["src"]
[tool.pdm.build]
includes = []
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[dependency-groups]
dev = [
"ruff>=0.15.0",
"pytest>=8.3.5",
"pytest-asyncio>=1.1.0",
"anyio>=4.10.0",
"mcp>=1.21.0",
"fastapi>=0.121.1",
"uvicorn>=0.37.0",
"mdformat>=1.0.0",
"mdformat-gfm>=1.0.0",
]