-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from matthewb66/dev
Dev
- Loading branch information
Showing
20 changed files
with
1,548 additions
and
390 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains 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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
[build-system] | ||
requires = ["setuptools>=67.0"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "bd_scan_yocto_via_sbom" | ||
version = "1.0.2" | ||
authors = [ | ||
{ name="Matthew Brady", email="[email protected]" }, | ||
] | ||
description = "BD_yocto_import_sbom - BD Script to import a Yocto project to Black Duck by scanning license.manifest and creating an SBOM file" | ||
readme = "README.md" | ||
requires-python = ">=3.8" | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
] | ||
dependencies = [ | ||
"blackduck>=1.1.3", | ||
"requests", | ||
"semver" | ||
] | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/matthewb66/bd_scan_yocto_via_sbom" | ||
Issues = "https://github.com/matthewb66/bd_scan_yocto_via_sbom/issues" | ||
|
||
[project.scripts] | ||
bd-scan-yocto-via-sbom = "yocto_import_sbom:main.main" |
This file contains 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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
from yocto_import_sbom import main | ||
|
||
if __name__ == "__main__": | ||
main.main() |
Oops, something went wrong.