-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (49 loc) · 1.26 KB
/
Copy pathpyproject.toml
File metadata and controls
52 lines (49 loc) · 1.26 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
[project]
name = "r2framework"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"fastapi[standard]>=0.138.1",
"psycopg2>=2.9.12",
"sqlmodel>=0.0.24",
"strands-agents[openai,otel]>=1.45.0",
"strands-agents-tools>=0.8.2",
"pillow>=12.3.0",
"numpy>=2.5.0",
"scikit-image>=0.25.2",
"opencv-python>=5.0.0.93",
"pytest>=9.1.1",
"pytest-asyncio>=1.4.0",
"alembic>=1.18.5",
"aioboto3>=7.0.0",
"scalar-fastapi>=1.4.3",
"pytest-cov>=7.0.0",
"opentelemetry-instrumentation-fastapi>=0.64b0",
"bcrypt>=5.0.0",
]
[dependency-groups]
dev = [
"bandit>=1.9.3",
"basedpyright>=1.39.9",
"ruff>=0.15.21",
]
temp = [
"opencv-python>=5.0.0.93",
"scikit-image>=0.25.2",
]
[tool.bandit]
exclude_dirs = ["tests", "migrations"]
[tool.basedpyright]
exclude = ["**/migrations", "**/.*", "**/__pycache__", "**/tests/unit/shared"]
reportMissingTypeStubs = false
reportUnknownParameterType = false
reportUnknownVariableType = false
reportUnknownMemberType = false
reportUnknownArgumentType = false
reportAny = false
reportExplicitAny = false
reportUnannotatedClassAttribute = false
reportImportCycles = "warning"
reportCallInDefaultInitializer = false