Skip to content
Closed
Changes from 1 commit
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
32 changes: 23 additions & 9 deletions sdk/keyvault/azure-keyvault-keys/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,20 @@
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
# Code generated by Microsoft (R) Python Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------

[build-system]
requires = ["setuptools>=61.0.0", "wheel"] # Requires 61.0.0 for dynamic version
build-backend = "setuptools.build_meta"

[project]
name = "azure-keyvault-keys"
authors = [
{name = "Microsoft Corporation", email = "[email protected]"},
{ name = "Microsoft Corporation", email = "[email protected]" },
]
description = "Microsoft Corporation Azure Key Vault Keys Client Library for Python"
keywords = ["azure", "azure sdk"]
requires-python = ">=3.9"
license = {text = "MIT License"}
classifiers = [
"Development Status :: 5 - Production/Stable",
Expand All @@ -20,26 +25,35 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
]
requires-python = ">=3.9"
keywords = ["azure", "azure sdk"]

dependencies = [
"azure-core>=1.31.0",
"cryptography>=2.1.4",
"isodate>=0.6.1",
"azure-core>=1.31.0",
"typing-extensions>=4.6.0",
"cryptography>=2.1.4",
]
dynamic = [
"version", "readme"
]
dynamic = ["version", "readme"]

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

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

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

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