Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------

[build-system]
requires = ["setuptools>=77.0.3", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "azure-onlineexperimentation"
authors = [
{ name = "Microsoft Corporation", email = "azpysdkhelp@microsoft.com" },
]
description = "Microsoft Corporation Azure Onlineexperimentation Client Library for Python"
license = "MIT"
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.9"
keywords = [
"azure",
"azure sdk",
]
version = "1.0.0b1"
dependencies = [
"isodate>=0.6.1",
"azure-core>=1.30.0",
"typing-extensions>=4.6.0",
]
dynamic = ["readme"]

[project.urls]
repository = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk"

[tool.setuptools.dynamic]
readme = {file = [
"README.md",
"CHANGELOG.md",
], content-type = "text/markdown"}

[tool.setuptools.package-data]
pytyped = ["py.typed"]

[tool.setuptools.packages.find]
exclude = [
"azure",
"tests",
]
69 changes: 0 additions & 69 deletions sdk/onlineexperimentation/azure-onlineexperimentation/setup.py

This file was deleted.

56 changes: 56 additions & 0 deletions sdk/openai/azure-openai/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,59 @@
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------

[build-system]
requires = ["setuptools>=77.0.3", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "azure-openai"
authors = [
{ name = "Microsoft Corporation", email = "azpysdkhelp@microsoft.com" },
]
description = "Microsoft Azure Azure OpenAI Client Library for Python"
license = "MIT"
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
requires-python = ">=3.7"
keywords = [
"azure",
"azure sdk",
]
version = "1.0.0b1"
dependencies = [
"azure-identity<2.0.0,>=1.15.0",
]
dynamic = ["readme"]

[project.urls]
repository = "https://github.com/Azure/azure-sdk-for-python"

[tool.setuptools.dynamic]
readme = {file = [
"README.md",
"CHANGELOG.md",
], content-type = "text/markdown"}

[tool.setuptools.package-data]
pytyped = ["py.typed"]

[tool.setuptools.packages.find]
exclude = [
"azure",
"tests",
]

[tool.azure-sdk-build]
pylint = false
mypy = false
Expand Down
72 changes: 0 additions & 72 deletions sdk/openai/azure-openai/setup.py

This file was deleted.

72 changes: 69 additions & 3 deletions sdk/projects/azure-projects/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,77 @@
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------

[build-system]
requires = ["setuptools>=77.0.3", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "azure-projects"
authors = [
{ name = "Microsoft Corporation", email = "azpysdkhelp@microsoft.com" },
]
description = "Microsoft Azure Projects Library for Python"
license = "MIT"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">=3.8"
keywords = [
"azure",
"azure sdk",
"azure projects",
]
version = "0.0.1a1"
dependencies = [
"typing-extensions>=4.5",
"python-dotenv>=1.0.0",
"pyyaml>=6.0.2",
"azure-core>=1.31.0",
"azure-identity>=1.20",
"azure-appconfiguration-provider>=2.0.0",
]

dynamic = ["readme"]
[project.optional-dependencies]
mcp = [
"mcp>=1.6",
"makefun>=1.15",
]

[project.urls]
repository = "https://github.com/Azure/azure-sdk-for-python"

[tool.setuptools.dynamic]
readme = {file = [
"README.md",
"CHANGELOG.md",
], content-type = "text/markdown"}

[tool.setuptools.package-data]
"azure.projects" = ["py.typed"]

[tool.setuptools.packages.find]
exclude = [
"azure",
"tests",
]

[tool.azure-sdk-build]
mypy = true
type_check_samples = true
verifytypes = true
# TODO: Get pyright passing
pyright = false
pylint = true
black = true
sphinx = true
# absolute_cov = true
# absolute_cov_percent = 80.00
Loading
Loading