-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
67 lines (58 loc) · 1.64 KB
/
pyproject.toml
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
[project]
name = "superagentx"
version = "0.1.16a"
description = "The Ultimate Modular Autonomous Multi AI Agent Framework."
license = { text = "MIT" }
authors = [
{ name = "SuperAgentX AI", email = "<[email protected]>"},
]
maintainers = [
{ name = "SuperAgentX AI", email = "<[email protected]>"},
]
readme = "README.md"
keywords = ["superagentX", "AGI", "Agentic AI", "ASI", "superagentx", "agent", "LLM", "cli"]
requires-python = ">=3.10,<=3.13"
dependencies = [
"pydantic>=2.8.2",
"boto3>=1.35.8",
"bokeh>=3.5.2",
"openai>=1.47.1",
"exa-py>=1.1.4",
"neo4j>=5.24.0",
"chromadb>=0.5.5",
"opensearch-py>=2.7.1",
"elasticsearch>=8.15.1",
"aiohttp>=3.10.8",
"rich>=13.9.2",
"protobuf>=3.20.3",
"aiosqlite>=0.20.0",
"websockets>=13.1",
"amazon-transcribe>=0.6.2",
"scipy>=1.15.1",
"numpy>=2.2.1",
"aiofiles>=24.1.0",
"ollama>=0.4.7",
"camel-converter>=4.0.1"
]
[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" ]
[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"