Skip to content

Commit de01b6c

Browse files
committed
restore keyvault pyproject.toml to main. remove todo item
1 parent 893d00b commit de01b6c

2 files changed

Lines changed: 2 additions & 49 deletions

File tree

Lines changed: 1 addition & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -1,49 +1,2 @@
1-
[build-system]
2-
requires = ["setuptools>=61.0.0", "wheel"] # Requires 61.0.0 for dynamic version
3-
build-backend = "setuptools.build_meta"
4-
5-
[project]
6-
name = "azure-keyvault-keys"
7-
authors = [
8-
{name = "Microsoft Corporation", email = "azurekeyvault@microsoft.com"},
9-
]
10-
description = "Microsoft Azure Key Vault Keys Client Library for Python"
11-
keywords = ["azure", "azure sdk"]
12-
requires-python = ">=3.8"
13-
license = {text = "MIT License"}
14-
classifiers = [
15-
"Development Status :: 4 - Beta",
16-
"Programming Language :: Python",
17-
"Programming Language :: Python :: 3 :: Only",
18-
"Programming Language :: Python :: 3",
19-
"Programming Language :: Python :: 3.8",
20-
"Programming Language :: Python :: 3.9",
21-
"Programming Language :: Python :: 3.10",
22-
"Programming Language :: Python :: 3.11",
23-
"Programming Language :: Python :: 3.12",
24-
"Programming Language :: Python :: 3.13",
25-
"License :: OSI Approved :: MIT License",
26-
]
27-
dependencies = [
28-
"azure-core>=1.31.0",
29-
"cryptography>=2.1.4",
30-
"isodate>=0.6.1",
31-
"typing-extensions>=4.6.0",
32-
]
33-
dynamic = ["version", "readme"]
34-
35-
[project.urls]
36-
repository = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/keyvault/azure-keyvault-keys"
37-
38-
[tool.setuptools.dynamic]
39-
version = {attr = "azure.keyvault.keys._version.VERSION"}
40-
readme = {file = ["README.md", "CHANGELOG.md"], content-type = "text/markdown"}
41-
42-
[tool.setuptools.packages.find]
43-
exclude = ["samples*", "tests*", "azure", "azure.keyvault"]
44-
45-
[tool.setuptools.package-data]
46-
pytyped = ["py.typed"]
47-
481
[tool.azure-sdk-build]
49-
pyright = false
2+
pyright = false

tools/azure-sdk-tools/ci_tools/parsing/parse_functions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ def parse_pyproject(
394394
python_requires = project_config.get("requires-python")
395395
requires = project_config.get("dependencies")
396396
is_new_sdk = name in NEW_REQ_PACKAGES or any(map(lambda x: (parse_require(x).key in NEW_REQ_PACKAGES), requires))
397-
# todo: update traversal logic
397+
398398
name_space = name.replace("-", ".")
399399
package_data = get_value_from_dict(toml_dict, "tool.setuptools.package-data", None)
400400
include_package_data = get_value_from_dict(toml_dict, "tool.setuptools.include-package-data", True)

0 commit comments

Comments
 (0)