-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (77 loc) · 2.72 KB
/
pyproject.toml
File metadata and controls
89 lines (77 loc) · 2.72 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
79
80
81
82
83
84
85
86
87
88
89
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "agentcore-deep-research"
version = "0.1.0"
description = "AgentCore Deep Research - AI-powered multi-source deep research application"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
authors = [
{ name = "AWS Professional Services", email = "aws-professional-services@amazon.com" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
# Core dependencies for gateway utilities and scripts
dependencies = [
"boto3>=1.34.0",
"requests>=2.31.0",
"PyYAML>=6.0.1",
"colorama>=0.4.6",
]
[project.optional-dependencies]
# Development dependencies
dev = ["pytest>=7.0.0", "ruff>=0.1.0", "mypy>=1.0.0"]
# Strands agent dependencies (for local development)
agent-strands = [
"strands-agents==1.16.0",
"bedrock-agentcore[strands-agents]==1.0.6",
"mcp==1.21.0",
]
# All dependencies for local development
all = [
"agentcore-deep-research[dev,agent-strands]",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["gateway*", "scripts*"]
exclude = ["tests*", "infra-cdk*", "frontend*", "patterns*"]
[tool.ruff]
line-length = 88
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "N", "UP", "S", "B", "A", "C4", "T20"]
ignore = ["S101", "S603", "S607"] # Allow assert, subprocess calls
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["S101"] # Allow assert in tests
"test-scripts/*.py" = ["E402", "T201", "S110", "B904", "B007", "E501"] # Test scripts
"infra-cdk/lambdas/zip-packager/*.py" = ["S310"] # CFN response URL is trusted
"gateway/tools/*/lambda.py" = ["S310"] # Gateway tools use trusted API URLs
"gateway/tools/*/*.py" = ["S310"] # Gateway tools use trusted API URLs
"test-scripts/test_tavily_local.py" = ["S310"] # Tavily API URL is trusted
"patterns/*/*.py" = ["T201"] # Allow print statements for agent logging
"scripts/*.py" = ["T201", "UP036", "E501"] # Allow print statements in CLI scripts
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
exclude = ["patterns/"] # Folders with hyphens are not valid Python package names
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py", "*_test.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
[dependency-groups]
dev = [
"pre-commit>=4.5.1",
]