-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (40 loc) · 898 Bytes
/
Copy pathpyproject.toml
File metadata and controls
45 lines (40 loc) · 898 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
43
44
45
[project]
name = "multi-agents-app-on-aws"
version = "1.0.0"
description = "Multi-agent AI system on AWS using Bedrock AgentCore"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
authors = [{name = "Rajesh Srivastava", email = "rajsrivastava2@gmail.com"}]
keywords = ["ai-agents", "aws", "bedrock", "agentcore", "multi-agent"]
dependencies = [
"boto3>=1.42.0",
"python-dotenv>=1.0.0",
]
[project.optional-dependencies]
groq = [
"groq>=0.12.0",
]
gemini = [
"google-genai>=1.0.0",
]
dev = [
"pytest>=8.0.0",
"pytest-cov>=5.0.0",
"ruff>=0.4.0",
]
deploy = [
"bedrock-agentcore>=1.4.0",
"bedrock-agentcore-starter-toolkit>=0.1.0",
]
ui = [
"streamlit>=1.38.0",
]
[tool.ruff]
target-version = "py310"
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "W", "I"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]