-
Notifications
You must be signed in to change notification settings - Fork 132
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (63 loc) · 1.65 KB
/
pyproject.toml
File metadata and controls
78 lines (63 loc) · 1.65 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[project]
name = "gaab-strands-workflow-agent"
version = "4.0.4"
description = "GAAB Strands Workflow Agent Runtime for Amazon Bedrock AgentCore"
readme = "README.md"
requires-python = ">=3.13"
license = { text = "Apache-2.0" }
authors = [{ name = "Amazon Web Services" }]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"setuptools>=70.0.0",
"pip>=25.0",
"wheel>=0.42.0",
# AWS SDK
"boto3>=1.35.0",
# Strands SDK with OpenTelemetry support
"strands-agents[otel]>=1.10.0",
"strands-agents-tools>=0.2.9",
# bedrock-agentcore
"bedrock-agentcore>=0.1.5",
# OpenTelemetry for observability
"aws-opentelemetry-distro>=0.12.1",
# Pydantic for data validation and parsing
"pydantic>=2.0.0",
# Local shared library (managed via tool.uv.sources)
"gaab-strands-common",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src"]
[tool.uv]
dev-dependencies = [
"pytest>=8.0.0",
"pytest-cov>=5.0.0",
"black>=24.0.0",
"isort>=5.12.0",
"mypy>=1.8.0",
"moto>=5.0.0",
"pytest-mock>=3.12.0",
]
[tool.uv.sources]
gaab-strands-common = { path = "../gaab-strands-common", editable = true }
[tool.black]
line-length = 100
target-version = ['py313']
[tool.isort]
profile = "black"
line_length = 100
[tool.mypy]
python_version = "3.13"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
[tool.pytest.ini_options]
testpaths = ["test"]
python_files = ["test_*.py", "*_test.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]