Skip to content

Commit

Permalink
fix(tests): include tests in sdist builds (#337)
Browse files Browse the repository at this point in the history
* feat: include `tests` in `sdist` builds for #336 
* delete unexpected `DS_Store` file

Signed-off-by: Jan Kowalleck <jan.kowalleck@gmail.com>
  • Loading branch information
jkowalleck committed Jan 11, 2023
1 parent 7aae26d commit 936ad7d
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 21 deletions.
43 changes: 22 additions & 21 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,32 +12,33 @@ readme = "README.md"
homepage = "https://github.com/CycloneDX/cyclonedx-python-lib"
repository = "https://github.com/CycloneDX/cyclonedx-python-lib"
packages = [
{ include = "cyclonedx" }
{ include = "cyclonedx" }
]
include = [
"LICENSE",
{ path = "tests", format = "sdist" },
"LICENSE",
]
classifiers = [
# Trove classifiers - https://packaging.python.org/specifications/core-metadata/#metadata-classifier
# Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: Legal Industry',
'Intended Audience :: System Administrators',
'Topic :: Security',
'Topic :: Software Development',
'Topic :: System :: Software Distribution',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Typing :: Typed'
# Trove classifiers - https://packaging.python.org/specifications/core-metadata/#metadata-classifier
# Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: Legal Industry',
'Intended Audience :: System Administrators',
'Topic :: Security',
'Topic :: Software Development',
'Topic :: System :: Software Distribution',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Typing :: Typed',
]
keywords = [
"BOM", "SBOM", "SCA", "OWASP"
"BOM", "SBOM", "SCA", "OWASP",
]

[tool.poetry.urls]
Expand Down Expand Up @@ -77,7 +78,7 @@ build-backend = "poetry.core.masonry.api"

[tool.semantic_release]
version_variable = [
"pyproject.toml:version"
"pyproject.toml:version"
]
branch = "main"
upload_to_pypi = true
Expand Down
Binary file removed tests/.DS_Store
Binary file not shown.

0 comments on commit 936ad7d

Please sign in to comment.