Skip to content
Merged
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
43 changes: 43 additions & 0 deletions sdk/identity/azure-identity-broker/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,46 @@
[build-system]
requires = ["setuptools>=77.0.3", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "azure-identity-broker"
authors = [
{name = "Microsoft Corporation", email = "azpysdkhelp@microsoft.com"},
]
description = "Microsoft Azure Identity Broker plugin for Python"
keywords = ["azure", "azure sdk"]
requires-python = ">=3.9"
license = "MIT"
Comment thread
swathipil marked this conversation as resolved.
classifiers = [
"Development Status :: 5 - Production/Stable",
"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",
]
dependencies = [
"azure-identity<2.0.0,>=1.18.0",
"msal[broker]>=1.33.0,<2",
]
dynamic = ["version", "readme"]

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

[tool.setuptools.dynamic]
version = {attr = "azure.identity.broker._version.VERSION"}
readme = {file = ["README.md", "CHANGELOG.md"], content-type = "text/markdown"}

[tool.setuptools.packages.find]
include = ["azure.identity.broker"]

[tool.setuptools.package-data]
pytyped = ["py.typed"]
Comment thread
swathipil marked this conversation as resolved.

[tool.azure-sdk-build]
pyright = false
black = true
68 changes: 0 additions & 68 deletions sdk/identity/azure-identity-broker/setup.py

This file was deleted.

46 changes: 46 additions & 0 deletions sdk/identity/azure-identity/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,49 @@
[build-system]
requires = ["setuptools>=77.0.3", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "azure-identity"
authors = [
{name = "Microsoft Corporation", email = "azpysdkhelp@microsoft.com"},
]
description = "Microsoft Azure Identity Library for Python"
keywords = ["azure", "azure sdk"]
requires-python = ">=3.9"
license = "MIT"
Comment thread
swathipil marked this conversation as resolved.
classifiers = [
"Development Status :: 5 - Production/Stable",
"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",
]
dependencies = [
"azure-core>=1.31.0",
"cryptography>=2.5",
"msal>=1.30.0",
"msal-extensions>=1.2.0",
"typing-extensions>=4.0.0",
]
dynamic = ["version", "readme"]

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

[tool.setuptools.dynamic]
version = {attr = "azure.identity._version.VERSION"}
readme = {file = ["README.md", "CHANGELOG.md"], content-type = "text/markdown"}

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

[tool.setuptools.package-data]
pytyped = ["py.typed"]
Comment thread
swathipil marked this conversation as resolved.

[tool.azure-sdk-build]
pyright = false
verifytypes = true
Expand Down
68 changes: 0 additions & 68 deletions sdk/identity/azure-identity/setup.py

This file was deleted.