forked from aristoteleo/PantheonOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
151 lines (142 loc) · 3.85 KB
/
pyproject.toml
File metadata and controls
151 lines (142 loc) · 3.85 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
[project]
name = "pantheon-agents"
description = "A framework for building distributed evolvable multi-agent system."
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
authors = [
{name = "Weize Xu"},
{name = "Quan Zhong"},
{name = "Zehua Zeng"},
{name = "Xuehai Wang"},
]
keywords = ["multi-agent", "llm", "ai", "distributed", "mcp", "autonomous-agents"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
# Core
"tomli>=2.0.1; python_version < '3.11'",
"diff-match-patch>=20241021",
"executor-engine>=0.3.3",
"fire>=0.7.0",
"funcdesc>=0.1.8",
"litellm>=1.81.3",
"loguru>=0.7.3",
"openai>=2.0.0",
"pillow>=10.4.0",
"rich>=14.0.0",
"rich-pyfiglet",
"fastmcp>=2.11.0",
"nats-py>=2.10.0",
"nkeys",
"PyNaCl>=1.5.0",
"httpx>=0.28.1",
"diskcache",
"python-frontmatter>=1.1.0",
"prompt-toolkit>=3.0.50",
"aiofiles>=24.1.0",
# Toolsets
"ddgs>=9.5.2",
"crawl4ai>=0.5.0",
"matplotlib>=3.10.3",
"pandas",
"cloudpickle>=3.0.0",
"PyMuPDF>=1.25.5",
"lancedb>=0.20.0",
"jupyter-client>=8.0.0",
"ipykernel>=6.25.0",
"nbformat>=5.10.0",
"jedi>=0.19.0",
"tree-sitter>=0.24.0",
"tree-sitter-python>=0.24.0",
"tree-sitter-javascript>=0.24.0",
# Server
"nats-server-bin>=2.10.0",
]
dynamic = ["version"]
[project.scripts]
pantheon = "pantheon.__main__:main"
[project.urls]
Homepage = "https://github.com/aristoteleo/pantheon-agents"
Repository = "https://github.com/aristoteleo/pantheon-agents"
Issues = "https://github.com/aristoteleo/pantheon-agents/issues"
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
pythonpath = ["."]
markers = [
"api: marks tests that require API access (deselect with '-k \"not api\"')",
"integration: marks tests that require heavier local deps (e.g., scanpy)",
"live_llm: marks tests that require live LLM API calls (requires OPENAI_API_KEY)",
]
[project.optional-dependencies]
dev = [
"pytest>=8.3.4",
"pytest-asyncio>=0.25.0",
"pytest-timeout>=2.3.1",
]
slack = [
"slack-sdk",
"slack-bolt",
]
r = [
# R language support for notebooks (requires R installed on system)
"rpy2>=3.5.0",
]
knowledge = [
"llama-index-core>=0.11.0",
"llama-index-llms-openai",
"llama-index-vector-stores-qdrant>=0.3.0",
"qdrant-client>=1.12.0",
"llama-index-embeddings-openai>=0.2.0",
"llama-index-readers-file>=0.2.0",
"docx2txt>=0.8",
"fastembed>=0.2.0",
"llama-index-postprocessor-flashrank-rerank>=0.2.0",
"llama-index-postprocessor-cohere-rerank",
"nbconvert>=7.16.0",
]
[dependency-groups]
dev = [
"ipdb>=0.13.13",
"ipython>=8.30.0",
"pytest>=8.3.4",
"pytest-asyncio>=0.25.0",
"pip>=24.3.1",
"textual-dev>=1.7.0",
"build>=1.2.2.post1",
"slack-sdk",
"slack-bolt",
]
[tool.setuptools]
packages = {find = {where = ["."], exclude = ["tests*", "examples*", "tmp*", "try*", "docs*"]}}
[tool.setuptools.package-data]
"pantheon.factory" = [
"templates/**/*.md",
"templates/**/*.json",
"templates/*.json",
]
"pantheon.toolsets.database_api" = [
"schemas/*.json",
]
"pantheon.chatroom" = [
"nats-ws.conf",
]
"pantheon.toolsets.knowledge" = [
"config.yaml",
]
[tool.setuptools.dynamic]
version = {attr = "pantheon.__version__"}
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"