Skip to content

Commit 949b7a2

Browse files
committed
test
1 parent 2954898 commit 949b7a2

File tree

4 files changed

+60
-100
lines changed

4 files changed

+60
-100
lines changed
Lines changed: 58 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,62 @@
1-
[tool.mypy]
2-
python_version = "3.10"
3-
exclude = [
1+
# --------------------------------------------------------------------------
2+
# Copyright (c) Microsoft Corporation. All rights reserved.
3+
# Licensed under the MIT License. See License.txt in the project root for license information.
4+
# Code generated by Microsoft (R) Python Code Generator.
5+
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
6+
# --------------------------------------------------------------------------
7+
8+
[build-system]
9+
requires = ["setuptools>=77.0.3", "wheel"]
10+
build-backend = "setuptools.build_meta"
11+
12+
[project]
13+
name = "azure-ai-agents"
14+
authors = [
15+
{ name = "Microsoft Corporation", email = "[email protected]" },
416
]
5-
warn_unused_configs = true
6-
ignore_missing_imports = true
7-
follow_imports_for_stubs = false
8-
9-
[tool.isort]
10-
profile = "black"
11-
line_length = 120
12-
known_first_party = ["azure"]
13-
filter_files=true
14-
extend_skip_glob = [
15-
"*/_vendor/*",
16-
"*/_generated/*",
17-
"*/_restclient/*",
18-
"*/doc/*",
19-
"*/.tox/*",
17+
description = "Microsoft Corporation Azure Ai Agents Client Library for Python"
18+
license = "MIT"
19+
classifiers = [
20+
"Development Status :: 4 - Beta",
21+
"Programming Language :: Python",
22+
"Programming Language :: Python :: 3 :: Only",
23+
"Programming Language :: Python :: 3",
24+
"Programming Language :: Python :: 3.9",
25+
"Programming Language :: Python :: 3.10",
26+
"Programming Language :: Python :: 3.11",
27+
"Programming Language :: Python :: 3.12",
28+
"Programming Language :: Python :: 3.13",
2029
]
30+
requires-python = ">=3.9"
31+
keywords = ["azure", "azure sdk"]
2132

22-
[tool.azure-sdk-build]
23-
whl_no_aio= false
33+
dependencies = [
34+
"isodate>=0.6.1",
35+
"azure-core>=1.35.0",
36+
"typing-extensions>=4.6.0",
37+
]
38+
dynamic = [
39+
"version", "readme"
40+
]
41+
42+
[project.urls]
43+
repository = "https://github.com/Azure/azure-sdk-for-python"
2444

45+
[tool.setuptools.dynamic]
46+
version = {attr = "azure.ai.agents._version.VERSION"}
47+
readme = {file = ["README.md", "CHANGELOG.md"], content-type = "text/markdown"}
48+
49+
[tool.setuptools.packages.find]
50+
exclude = [
51+
"tests*",
52+
"samples*",
53+
"doc*",
54+
"azure",
55+
"azure.ai",
56+
]
57+
58+
[tool.setuptools.package-data]
59+
pytyped = ["py.typed"]
60+
61+
[tool.azure-sdk-build]
62+
whl_no_aio = false

sdk/ai/azure-ai-agents/samples/agents_response_formats/sample_agents_json_schema_response_format.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# pylint: disable=line-too-long,useless-suppression
12
# ------------------------------------
23
# Copyright (c) Microsoft Corporation.
34
# Licensed under the MIT License.

sdk/ai/azure-ai-agents/setup.py

Lines changed: 0 additions & 80 deletions
This file was deleted.

sdk/ai/azure-ai-agents/tests/test_ai_instrumentor_base.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# pylint: disable=line-too-long,useless-suppression
12
# ------------------------------------
23
# Copyright (c) Microsoft Corporation.
34
# Licensed under the MIT License.

0 commit comments

Comments
 (0)