-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpyproject.toml
More file actions
101 lines (92 loc) · 2.52 KB
/
pyproject.toml
File metadata and controls
101 lines (92 loc) · 2.52 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
[project]
name = "superagentx"
version = "1.0.8"
description = "The Ultimate Modular Autonomous Multi AI Agent Framework."
license = { text = "MIT" }
authors = [
{ name = "SuperAgentX AI", email = "<support@superagentx.ai>"},
]
maintainers = [
{ name = "SuperAgentX AI", email = "<support@superagentx.ai>"},
]
readme = "README.md"
keywords = ["superagentX", "AGI", "Agentic AI", "ASI", "superagentx", "agent", "LLM", "cli"]
requires-python = ">=3.12,<=3.14"
dependencies = [
"pydantic>=2.8.2",
"openai>=1.47.1",
"litellm>=1.79.0",
"exa-py>=1.1.4",
"aiohttp>=3.10.8",
"rich>=13.9.2",
"aiosqlite>=0.20.0",
"SQLAlchemy>=2.0.45",
"asyncpg>=0.31.0",
"websockets (>=15.0.1,<16.0.0)",
"aiofiles>=24.1.0",
"camel-converter>=4.0.1",
"yapf (>=0.43.0,<0.44.0)",
"httpx (>=0.28.1,<0.29.0)",
"mcp (>=1.7.0,<2.0.0)",
"aiopath (==0.7.7)",
"markdownify (>=1.1.0)",
"psutil (>=7.0.0 )",
"playwright (>=1.52.0)",
"pyyaml (>=6.0.2)",
"importlib-resources (>=6.5.2)",
"pyotp (>=2.9.0)",
"ntplib (>=0.4.0)",
"opentelemetry-sdk (>=1.35.0,<2.0.0)",
"opentelemetry-exporter-otlp (>=1.35.0,<2.0.0)",
"opentelemetry-instrumentation-logging (>=0.56b0,<0.57)",
"opentelemetry-instrumentation-asyncio (>=0.56b0,<0.57)",
"opentelemetry-instrumentation-requests (>=0.56b0,<0.57)",
"opentelemetry-instrumentation-httpx (>=0.56b0,<0.57)"
]
[project.urls]
homepage = "https://www.superagentx.ai/"
repository = "https://github.com/superagentxai/superagentx"
documentation = "https://docs.superagentx.ai/"
[project.scripts]
superagentx-cli = "superagentx_cli.main:app"
superagentx-app = "superagentx_cli.cli_app:app"
[project.optional-dependencies]
cli = [
"jinja2>=3.1.4",
"typer>=0.13.0",
"rich>=13.9.2",
"yapf>=0.43.0"
]
all =[
# Cli
"jinja2>=3.1.4",
"typer>=0.13.0",
"rich>=13.9.2",
"yapf>=0.43.0",
# All
"bokeh>=3.7.3",
"neo4j>=5.28.1",
"opensearch-py>=2.8.0",
"scipy>=1.15.3",
"elasticsearch>=9.0.1",
"numpy>=2.2.6",
"ollama>=0.4.7",
"fastembed>=0.6.0",
"chromadb>=1.0.10",
"opentelemetry-exporter-otlp-proto-grpc>=1.33.1",
"boto3>=1.35.8",
"google-genai>=1.20.0"
]
[tool.poetry]
packages = [
{ include = "superagentx" },
{ include = "superagentx_cli" }
]
[tool.poetry.group.test.dependencies]
pytest = "^8.3.3"
pytest-asyncio = "^0.24.0"
[tool.pytest.ini_options]
asyncio_mode = "auto"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"