-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (57 loc) · 1.38 KB
/
Copy pathpyproject.toml
File metadata and controls
63 lines (57 loc) · 1.38 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 = "agentseek-api"
version = "0.1.0"
description = "AgentSeek API core runtime with OceanBase checkpoints."
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"fastapi>=0.110.1",
"uvicorn>=0.30.0",
"pydantic>=2.8.0",
"pydantic-settings>=2.4.0",
"sqlalchemy>=2.0.0",
"greenlet>=3.1.0",
"asyncpg>=0.29.0",
"aiomysql>=0.2.0",
"aiosqlite>=0.20.0",
"redis>=5.0.0",
"langgraph>=1.0.3",
"langgraph-sdk>=0.3.5",
"langchain-core>=1.0.0",
"langchain-openai>=1.0.0",
"langchain-anthropic>=1.0.0",
"langchain-oceanbase==0.5.2",
"cryptography>=45.0.0",
"pymysql>=1.1.0",
"langchain>=0.3.9",
"mcp>=1.27.1",
"scalar-fastapi>=1.0.3",
]
[project.optional-dependencies]
embedded = [
"langchain-oceanbase[pyseekdb]==0.5.2",
]
[project.scripts]
agentseek-api = "agentseek_api.cli:main"
[dependency-groups]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"pytest-cov>=5.0.0",
"httpx>=0.27.0",
"ruff>=0.6.0",
"a2a-sdk>=1.0.3",
"langgraph-cli[inmem]",
"deepagents>=0.6.8",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/agentseek_api"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
markers = [
"e2e: end-to-end tests against a live server and real SeekDB/OceanBase backend",
]