Skip to content

Commit

Permalink
docs: ship docs with sdist build (#544)
Browse files Browse the repository at this point in the history
Signed-off-by: Jan Kowalleck <jan.kowalleck@gmail.com>
  • Loading branch information
jkowalleck authored Jan 30, 2024
1 parent 0d159c2 commit 52ef01c
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,19 @@ packages = [
{ include = "cyclonedx" }
]
include = [
# all is an object -> prevent parse issue like https://github.com/CycloneDX/cyclonedx-python-lib/network/updates/740004978
# all is an object -> prevent parse issue with dependabot
{ path="README.md", format =["sdist","wheel"] },
{ path="LICENSE", format=["sdist","wheel"] },
{ path="NOTICE", format=["sdist","wheel"] },
{ path="tests", format=["sdist"] },
{ path="CHANGELOG.md", format=["sdist"] },
{ path="docs", format=["sdist"] },
{ path="examples", format=["sdist"] },
]
exclude = [
# exclude dotfiles
"**/.*"
# exclude dotfiles and dotfolders
"**/.*",
"docs/_build", "docs/processes",
]
classifiers = [
# Trove classifiers - https://packaging.python.org/specifications/core-metadata/#metadata-classifier
Expand Down

0 comments on commit 52ef01c

Please sign in to comment.