Skip to content
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

[DO-NOT-MERGE] Add support for PEP 770 to pyproject.toml #4442

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
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
17 changes: 17 additions & 0 deletions src/schemas/json/pyproject.json
Original file line number Diff line number Diff line change
Expand Up @@ -375,6 +375,22 @@
}
}
},
"sbom-files": {
"$comment": "Still provisional under PEP 770",
"type": "array",
"items": {
"type": "string"
},
"title": "License files",
"description": "Relative paths or globs to paths of Software Bill-of-Materials files. Can be an empty list.",
"markdownDescription": "Relative paths or globs to paths of Software Bill-of-Materials files. Can be an empty list.",
"x-intellij-html-description": "<p>Relative paths or globs to paths of Software Bill-of-Materials files. Can be an empty list.</p>",
"x-taplo": {
"links": {
"key": "https://peps.python.org/pep-0770/#add-sbom-files-key"
}
}
}
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
}
},

"authors": {
"type": "array",
"items": {
Expand Down Expand Up @@ -591,6 +607,7 @@
"requires-python",
"license",
"license-files",
"sbom-files",
"authors",
"maintainers",
"keywords",
Expand Down
Loading