-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (32 loc) · 846 Bytes
/
pyproject.toml
File metadata and controls
34 lines (32 loc) · 846 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "{{ name }}"
version = "0.1.0"
description = "AgentCore Runtime Application using AutoGen SDK"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"autogen-agentchat >= 0.7.5",
"autogen-ext[mcp] >= 0.7.5",
"opentelemetry-distro",
"opentelemetry-exporter-otlp",
"bedrock-agentcore >= 1.0.3",
"botocore[crt] >= 1.35.0",
"tiktoken",
{{#if (eq modelProvider "Bedrock")}}
"autogen-ext[anthropic] >= 0.7.5",
{{/if}}
{{#if (eq modelProvider "Anthropic")}}
"autogen-ext[anthropic] >= 0.7.5",
{{/if}}
{{#if (eq modelProvider "OpenAI")}}
"autogen-ext[openai] >= 0.7.5",
{{/if}}
{{#if (eq modelProvider "Gemini")}}
"autogen-ext[openai] >= 0.7.5",
{{/if}}
]
[tool.hatch.build.targets.wheel]
packages = ["."]