-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
46 lines (40 loc) · 1014 Bytes
/
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
[tool.setuptools]
py-modules = ["agentwatch"]
[tool.poetry]
name = "agentwatch"
version = "1.0.0"
description = "Platform agnostic Agentic AI runtime observability framework"
authors = ["Shai Dvash <[email protected]>"]
license = "Apache 2.0"
[tool.poetry.dependencies]
python = "^3.11"
asyncio = "^3.4.3"
pydantic = "^2.10.6"
aiofiles = "^24.1.0"
aiohttp = "^3.11.14"
jsonpath-ng = "^1.7.0"
httpx = "^0.28.1"
uvicorn = "^0.34.0"
dotenv = "^0.9.9"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.5"
autoflake = "^2.3.1"
mypy = "^1.15.0"
pytest-asyncio = "^0.25.3"
httpx = "^0.28.1"
langgraph = "^0.3.8"
langchain-anthropic = "^0.3.9"
websockets = "^15.0.1"
fastapi = "^0.115.11"
autogen-agentchat = ">=0.2,<1.0"
langchain-openai = "^0.3.9"
langchain-ollama = "^0.3.0"
[tool.pytest.ini_options]
pythonpath = [
"src/"
]
[tool.poetry.scripts]
agentwatch = "agentwatch.cli:main"
[build-system]
requires = ["setuptools>=40.9.0", "wheel", "poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"