-
Notifications
You must be signed in to change notification settings - Fork 3k
Move KV Keys to pyproject.toml #39100
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 11 commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
de35253
Move KV Keys to pyproject.toml
lmazuel 378260c
Add keywords
lmazuel 5f964bd
Update version extraction
lmazuel 30de0ed
tiny update to get_package_properties so that our pure pyproject.toml…
scbedd 6afd03d
temporarily continue on error from twine verify readme so we can see …
scbedd bd25f43
cleaning up remaining references to setup.py. it is mostly as simple …
scbedd 187298d
repair mindependency
scbedd 2e76671
ensure that build failures are checked in create_package, add build t…
scbedd 8ca6846
Explicit MD content-type for readme
lmazuel 57db75c
there are no adjustments necessary to make the requirement version up…
scbedd ed1a965
Merge branch 'kvkeys_pyproject_toml' of https://github.com/azure/azur…
scbedd 7123d53
Exclude tests and samples
lmazuel d86b9ed
merge main
scbedd cb4a153
still need to traverse the __init__ but this should be a green build now
scbedd 65fadcb
Merge branch 'main' into kvkeys_pyproject_toml
lmazuel fad512c
patch azure-sdk-tools workflow to make it passing
scbedd da3b317
Merge branch 'kvkeys_pyproject_toml' of https://github.com/azure/azur…
scbedd d79eacf
Merge branch 'main' into kvkeys_pyproject_toml
lmazuel f82c533
Apply suggestions from code review
scbedd e6e15e3
merge main after pulling updated classifiers from it into pyproject.t…
scbedd d99b109
merge main
swathipil f874aa1
we were finding _version files under the .tox folder
scbedd 72b13de
Update eng/test_tools.txt
swathipil c80df24
Merge branch 'main' into kvkeys_pyproject_toml
swathipil File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,46 @@ | ||
[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]"}, | ||
] | ||
description = "Microsoft Azure Key Vault Keys Client Library for Python" | ||
keywords = ["azure", "azure sdk"] | ||
requires-python = ">=3.8" | ||
license = {text = "MIT License"} | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.8", | ||
"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", | ||
"License :: OSI Approved :: MIT License", | ||
] | ||
dependencies = [ | ||
"azure-core>=1.31.0", | ||
"cryptography>=2.1.4", | ||
"isodate>=0.6.1", | ||
"typing-extensions>=4.0.1", | ||
] | ||
dynamic = ["version", "readme"] | ||
|
||
[project.urls] | ||
repository = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/keyvault/azure-keyvault-keys" | ||
|
||
[tool.setuptools.dynamic] | ||
version = {attr = "azure.keyvault.keys._version.VERSION"} | ||
readme = {file = ["README.md", "CHANGELOG.md"], content-type = "text/markdown"} | ||
|
||
[tool.setuptools.packages.find] | ||
exclude = ["samples", "tests", "azure", "azure.keyvault"] | ||
|
||
[tool.azure-sdk-build] | ||
pyright = false |
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.