-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
82 lines (75 loc) · 1.48 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[project]
name = "aws-bedrock-multi-agent-blueprint"
version = "1.0.0"
description = "AWS Bedrock Multi-Agent Blueprint"
requires-python = "==3.12.8"
readme = "README.md"
dependencies = ["ipykernel>=6.29.5", "jupyter>=1.1.1"]
[tool.uv]
dev-dependencies = ["pyright>=1.1.389", "pytest>=8.3.3", "ruff>=0.10.0"]
[tool.pytest.ini_options]
pythonpath = ["src/app/src", "src/tools/clinicaltrials"]
markers = ["unit: marks unit tests", "moto: marks moto tests"]
python_files = "test_*.py"
python_classes = "Test*"
python_functions = "test_*"
testpaths = ["src"]
norecursedirs = [
"**/cdk.out/**",
"target/**",
".venv/**",
"**/.tox/**",
"**/build/**",
"misc/",
]
filterwarnings = ["ignore::DeprecationWarning"]
[tool.ruff]
line-length = 120
target-version = "py312"
exclude = [
"**/cdk.out/**",
"target/**",
".venv/**",
"**/.tox/**",
"**/build/**",
"misc/",
]
[tool.ruff.lint]
select = ["E", "F", "I", "W", "N", "B", "C4", "SIM", "ERA"]
ignore = [
"D100",
"D104",
"E902",
"E501",
"F401",
"F403",
"F405",
"C901",
"B905",
"N803",
"N806",
"N815",
"W391",
"W292",
"ERA001",
"SIM105",
"B008",
"B006",
"F821",
"B012",
"F541",
"C408",
"B007",
"B904",
"C416",
"B017",
"SIM108"
]
[tool.ruff.format]
docstring-code-format = true
quote-style = "double"
[tool.ruff.isort]
case-sensitive = true
known-first-party = ["app"]
[tool.ruff.lint.pydocstyle]
convention = "google"