-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (34 loc) · 957 Bytes
/
pyproject.toml
File metadata and controls
36 lines (34 loc) · 957 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "{{ name }}"
version = "0.1.0"
description = "AgentCore Runtime Application using LangChain/LangGraph"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"aws-opentelemetry-distro",
"langgraph >= 1.0.2",
"mcp >= 1.19.0",
"langchain-mcp-adapters >= 0.1.11",
"langchain >= 1.0.3",
"bedrock-agentcore >= 1.0.3",
"botocore[crt] >= 1.35.0",
{{#if (eq modelProvider "Bedrock")}}
"langchain-aws >= 1.0.0",
{{/if}}
{{#if (eq modelProvider "Anthropic")}}
"langchain-anthropic >= 1.1.0",
{{/if}}
{{#if (eq modelProvider "OpenAI")}}
"langchain-openai >= 1.0.3",
{{/if}}
{{#if (eq modelProvider "Gemini")}}
"langchain-google-genai >= 3.0.3",
{{/if}}
{{#if hasGateway}}{{#if (includes gatewayAuthTypes "AWS_IAM")}}"mcp-proxy-for-aws >= 1.1.0",
{{/if}}{{/if}}
]
[tool.hatch.build.targets.wheel]
packages = ["."]