forked from microsoft/agent-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (52 loc) · 1.5 KB
/
Copy pathpyproject.toml
File metadata and controls
58 lines (52 loc) · 1.5 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
[project]
name = "agent-framework-telegram-foundry-hosted-agent"
version = "0.1.0"
description = "Telegram bot hosted in Microsoft Foundry with Agent Framework."
requires-python = ">=3.13,<3.14"
dependencies = [
"agent-framework-azure-cosmos>=1.0.0b260821",
"agent-framework-foundry",
"agent-framework-foundry-hosting>=1.0.0b260821",
"agent-framework-hosting-telegram>=1.0.0a260730",
"azure-identity",
"azure-keyvault-secrets",
"azure-monitor-opentelemetry",
"httpx",
"python-dotenv",
]
# Foundry's Oryx remote builder currently reads Poetry metadata from
# pyproject.toml. Keep this runtime dependency mirror aligned with [project].
[tool.poetry]
name = "agent-framework-telegram-foundry-hosted-agent"
version = "0.1.0"
description = "Telegram bot hosted in Microsoft Foundry with Agent Framework."
authors = ["Microsoft"]
package-mode = false
[tool.poetry.dependencies]
python = ">=3.13,<3.14"
agent-framework-azure-cosmos = ">=1.0.0b260821"
agent-framework-foundry = "*"
agent-framework-foundry-hosting = ">=1.0.0b260821"
agent-framework-hosting-telegram = ">=1.0.0a260730"
azure-identity = "*"
azure-keyvault-secrets = "*"
azure-monitor-opentelemetry = "*"
httpx = "*"
python-dotenv = "*"
[dependency-groups]
dev = [
"pyright",
"pytest",
"pytest-asyncio",
"pyyaml",
"ruff",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.pyright]
include = ["main.py", "tests"]
typeCheckingMode = "basic"
[tool.uv]
package = false
prerelease = "if-necessary"