-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
54 lines (49 loc) · 1.34 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
[tool.poetry]
name = "superagentx-handlers"
version = "0.1.5"
description = ""
authors = [
"SuperAgentX AI <[email protected]>",
]
maintainers = [
"SuperAgentX AI <[email protected]>",
]
license = "MIT"
readme = "README.md"
homepage = "https://www.superagentx.ai/"
repository = "https://github.com/superagentxai/superagentx"
documentation = "https://docs.superagentx.ai/"
keywords = ["superagentX", "AGI", "Agentic AI", "ASI", "superagentx", "agent", "LLM"]
[tool.poetry.dependencies]
python = ">=3.10,<=3.13"
aiohttp = "^3.10.10"
atlassian-python-api = "^3.41.16"
hubspot-api-client = "^10.0.0"
openai = "^1.52.0"
google-auth-oauthlib = "^1.2.1"
google-api-python-client = "^2.149.0"
wikipedia-api = "^0.7.1"
crawl4ai = "0.3.731"
sqlalchemy = {extras = ["asyncio"], version = "^2.0.36"}
psycopg2-binary = "^2.9.10"
oracledb = "^2.4.1"
pymssql = "^2.3.1"
asyncpg = "^0.30.0"
aiomysql = "^0.2.0"
aioodbc = "^0.5.0"
jira = "^3.8.0"
pypdf = "^5.0.1"
tweepy = {extras = ["async"], version = "^4.14.0"}
requests-html = "^0.10.0"
pyshorteners = "^1.0.1"
lxml-html-clean = "^0.4.1"
[tool.poetry.group.test.dependencies]
pytest = "^8.3.3"
pytest-asyncio = "^0.24.0"
[tool.poetry.group.dev.dependencies]
superagentx = "^0.1.12"
[tool.pytest.ini_options]
asyncio_mode = "auto"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"