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
56 changes: 56 additions & 0 deletions sdk/webpubsub/azure-messaging-webpubsubclient/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,59 @@
[build-system]
requires = ["setuptools>=77.0.3", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "azure-messaging-webpubsubclient"
authors = [
{name = "Microsoft Corporation", email = "[email protected]"},
]
description = "Microsoft Azure Web PubSub Client Library for Python"
keywords = ["azure", "azure sdk"]
requires-python = ">=3.9"
license = "MIT"
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 = [
"isodate>=0.6.1",
"azure-core>=1.26.3",
"websocket-client>=1.6.0",
]
dynamic = ["version", "readme"]

[project.optional-dependencies]
aio = [
"aiohttp>=3.9.3",
]

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

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

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

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

[tool.azure-sdk-build]
pylint = false
pyright = false
76 changes: 0 additions & 76 deletions sdk/webpubsub/azure-messaging-webpubsubclient/setup.py

This file was deleted.