-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (65 loc) · 1.85 KB
/
pyproject.toml
File metadata and controls
75 lines (65 loc) · 1.85 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
[project]
name = "azure-ai-agentserver-core"
dynamic = ["version", "readme"]
description = "Foundation utilities and host framework for Azure AI Hosted Agents"
requires-python = ">=3.10"
authors = [
{ name = "Microsoft Corporation", email = "azpysdkhelp@microsoft.com" },
]
license = "MIT"
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
keywords = ["azure", "azure sdk", "agent", "agentserver", "core"]
dependencies = [
"starlette>=0.45.0",
"hypercorn>=0.17.0",
"opentelemetry-api>=1.40.0",
"opentelemetry-sdk>=1.40.0",
"microsoft-opentelemetry>=0.1.0b1",
]
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project.urls]
repository = "https://github.com/Azure/azure-sdk-for-python"
[tool.setuptools.packages.find]
exclude = [
"tests*",
"samples*",
"doc*",
"azure",
"azure.ai",
"azure.ai.agentserver",
]
[tool.setuptools.dynamic]
version = { attr = "azure.ai.agentserver.core._version.VERSION" }
readme = { file = ["README.md"], content-type = "text/markdown" }
[tool.setuptools.package-data]
"azure.ai.agentserver.core" = ["py.typed"]
[tool.ruff]
line-length = 120
target-version = "py310"
lint.select = ["E", "F", "B", "I"]
lint.ignore = []
fix = false
[tool.ruff.lint.isort]
known-first-party = ["azure.ai.agentserver.core"]
combine-as-imports = true
[tool.azure-sdk-build]
breaking = false
mypy = true
pyright = true
verifytypes = false
latestdependency = false
pylint = true
type_check_samples = false
[tool.uv.sources]