Skip to content

Commit

Permalink
Merge pull request #1 from matthewb66/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
matthewb66 authored Aug 1, 2024
2 parents fb88961 + 2f1d69b commit bfa9325
Show file tree
Hide file tree
Showing 20 changed files with 1,548 additions and 390 deletions.
226 changes: 174 additions & 52 deletions README.md

Large diffs are not rendered by default.

92 changes: 0 additions & 92 deletions RecipeListClass.py

This file was deleted.

128 changes: 0 additions & 128 deletions config.py

This file was deleted.

11 changes: 0 additions & 11 deletions global_values.py

This file was deleted.

47 changes: 0 additions & 47 deletions main.py

This file was deleted.

30 changes: 30 additions & 0 deletions pyproject.toml
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"
4 changes: 4 additions & 0 deletions run.py
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()
Loading

0 comments on commit bfa9325

Please sign in to comment.