Skip to content

Commit

Permalink
chore: make pyproject parsable by dependabot (#477)
Browse files Browse the repository at this point in the history
Signed-off-by: Jan Kowalleck <[email protected]>
  • Loading branch information
jkowalleck committed Oct 24, 2023
1 parent c3254d0 commit c4eaaa5
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,11 @@ packages = [
{ include = "cyclonedx" }
]
include = [
"README.md", "LICENSE", "NOTICE",
{ path = "tests", format = "sdist" },
# all is an object -> prevent parse issue like https://github.com/CycloneDX/cyclonedx-python-lib/network/updates/740004978
{ path="README.md", format =["sdist","wheel"] },
{ path="LICENSE", format=["sdist","wheel"] },
{ path="NOTICE", format=["sdist","wheel"] },
{ path="tests", format=["sdist"] },
]
exclude = [
# exclude dotfiles
Expand Down

0 comments on commit c4eaaa5

Please sign in to comment.