Skip to content

Commit d725470

Browse files
committed
update pyproject.toml
1 parent 319f394 commit d725470

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

sdk/ai/azure-ai-agentserver-langgraph/pyproject.toml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,25 @@ classifiers = ["Programming Language :: Python :: 3", "Programming Language :: P
88

99
dependencies = [
1010
"azure-ai-agentserver-core",
11-
"langchain",
12-
"langchain-openai",
11+
"langchain>0.4.0",
12+
"langchain-openai>0.4.0",
1313
"langchain-azure-ai[opentelemetry]",
14-
"langgraph",
14+
"langgraph>0.4.0",
1515
"opentelemetry-exporter-otlp-proto-http",
1616
]
1717

1818
[build-system]
19-
requires = ["setuptools>=61.0", "wheel"]
19+
requires = ["setuptools>=69", "wheel"]
2020
build-backend = "setuptools.build_meta"
2121

22-
[tool.setuptools]
23-
packages = { find = { include = ["azure*"] } }
22+
[tool.setuptools.packages.find]
23+
exclude = [
24+
"tests*",
25+
"samples*",
26+
"doc*",
27+
"azure",
28+
"azure.ai",
29+
]
2430

2531
[tool.setuptools.dynamic]
2632
version = { attr = "azure.ai.agentserver.langgraph._version.VERSION" }

0 commit comments

Comments
 (0)