|
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]" }, |
4 | 16 | ] |
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", |
20 | 29 | ] |
| 30 | +requires-python = ">=3.9" |
| 31 | +keywords = ["azure", "azure sdk"] |
21 | 32 |
|
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" |
24 | 44 |
|
| 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 |
0 commit comments