forked from cnoe-io/ai-platform-engineering
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (51 loc) · 1.21 KB
/
pyproject.toml
File metadata and controls
59 lines (51 loc) · 1.21 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
[project]
name = "ai-platform-engineering"
version = "0.2.11"
description = "AI Platform Engineering Multi-Agent Systems"
authors = [
{name = "CNOE Contributors"}
]
license = {text = "Apache-2.0"}
readme = "README.md"
requires-python = ">=3.13,<4.0"
dependencies = [
"a2a-sdk==0.3.0",
"agntcy-app-sdk==0.4.0",
"cnoe-agent-utils==0.3.9",
"config==0.5.1",
"cryptography==46.0.3",
"httpx==0.28.1",
"langchain==1.1.3",
"langchain-core==1.1.2",
"langchain-mcp-adapters==0.2.1",
"langfuse==3.10.5",
"langgraph==1.0.4",
"langmem>=0.0.30",
"mdformat==1.0.0",
"prometheus-client==0.23.1",
"pyjwt==2.10.1",
]
[tool.pytest.ini_options]
testpaths = ["ai_platform_engineering/utils", "ai_platform_engineering/multi_agents"]
[tool.ruff]
# Allow lines to be as long as 300.
line-length = 300
# Number of spaces per indentation level
indent-width = 2
[tool.ruff.lint]
select = ["E", "F"]
ignore = ["F403"]
[tool.commitizen]
name = "cz_conventional_commits"
tag_format = "$version"
version_scheme = "semver"
version_provider = "uv"
update_changelog_on_bump = true
major_version_zero = true
[dependency-groups]
dev = [
"ruff>=0.14.8",
]
unittest = [
"pytest-asyncio>=1.3.0",
]