-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 965 Bytes
/
pyproject.toml
File metadata and controls
42 lines (38 loc) · 965 Bytes
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
[project]
name = "aca-dev"
version = "2.0.0"
description = "Python is only used for coding in IDEs. Neither the stack nor the web application requires Python."
readme = "README.md"
requires-python = ">=3.13"
dependencies = []
[dependency-groups]
dev = [
"black>=24.10.0",
"isort>=5.13.2",
"pre-commit>=4.2.0",
"ruff>=0.12.5",
"aws-lambda-powertools>=3.4.1",
"boto3>=1.40.55",
"ipykernel>=6.29.5",
"opensearch-py>=2.8.0",
"pydantic>=2.10.5",
"requests>=2.32.3",
"strands-agents>=1.21.0",
"bedrock-agentcore>=1.1.0",
"mcp-proxy-for-aws>=1.2.0",
"retry>=0.9.2",
"strands-agents-evals>=0.1.8",
"langgraph>=1.0.10",
]
[tool.uv]
override-dependencies = [
"urllib3>=2.6.3",
"asteval>=1.0.6",
]
[tool.isort]
profile = "black"
multi_line_output = 3
line_length = 88 # To match black's default line length
[tool.ruff]
select = ["E", "F"] # Example: select error and flake8 rules
ignore = ["E501"]