-
Notifications
You must be signed in to change notification settings - Fork 488
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (43 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
53 lines (43 loc) · 1.1 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
[tool.uv.workspace]
members = ["packages/*", "samples/adk/*", "samples/langgraph/*", "samples/crewai/*", "samples/openai/*"]
[dependency-groups]
dev = [
"pytest>=8.3.5",
"pytest-asyncio>=0.25.3",
"ruff>=0.11.5",
"authlib>=1.6.4"
]
[tool.uv]
constraint-dependencies = [
"cryptography>=46.0.5",
"jaraco-context>=6.1.0",
"wheel>=0.46.2",
]
[tool.uv.sources]
kagent-adk = { workspace = true }
agentsts-adk = { workspace = true }
agentsts-core = { workspace = true }
[tool.ruff]
line-length = 120
fix = true
exclude = [
"notebooks/",
]
target-version = "py310"
[tool.ruff.format]
docstring-code-format = true
[tool.ruff.lint]
select = ["E", "F", "W", "B", "Q", "I", "ASYNC", "T20"]
ignore = ["F401", "E501", "B008", "ASYNC109"]
[tool.setuptools.packages.find]
where = ["packages"]
[tool.setuptools.package-data]
"*" = ["*.json", "*.yaml", "*.yml", "*.txt", "*.md"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
python_files = "test_*.py"
python_functions = "test_*"
log_cli = true
log_cli_level = "INFO"
testpaths = ["tests", "packages/*/tests"]