Skip to content

Commit 1e963bd

Browse files
committed
chore: revisit license headers
Signed-off-by: Jan Kowalleck <[email protected]>
1 parent 7543789 commit 1e963bd

File tree

16 files changed

+32
-7
lines changed

16 files changed

+32
-7
lines changed

cyclonedx/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
# limitations under the License.
1212
#
1313
# SPDX-License-Identifier: Apache-2.0
14+
# Copyright (c) OWASP Foundation. All Rights Reserved.
15+
1416

1517
"""
1618
Python library for generating and representing CycloneDX software bill-of-materials.

cyclonedx/exception/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
# limitations under the License.
1212
#
1313
# SPDX-License-Identifier: Apache-2.0
14-
#
14+
# Copyright (c) OWASP Foundation. All Rights Reserved.
15+
1516

1617
"""
1718
Exceptions that are specific to the CycloneDX library implementation.

cyclonedx/exception/factory.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
# limitations under the License.
1212
#
1313
# SPDX-License-Identifier: Apache-2.0
14-
#
14+
# Copyright (c) OWASP Foundation. All Rights Reserved.
15+
1516

1617
"""
1718
Exceptions relating to specific conditions that occur when factoring a model.

cyclonedx/exception/model.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
# limitations under the License.
1212
#
1313
# SPDX-License-Identifier: Apache-2.0
14-
#
14+
# Copyright (c) OWASP Foundation. All Rights Reserved.
15+
1516

1617
"""
1718
Exceptions relating to specific conditions that occur when modelling CycloneDX BOM.

cyclonedx/exception/output.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
# limitations under the License.
1212
#
1313
# SPDX-License-Identifier: Apache-2.0
14-
#
14+
# Copyright (c) OWASP Foundation. All Rights Reserved.
15+
1516

1617
"""
1718
Exceptions that are for specific error scenarios during the output of a Model to a SBOM.

cyclonedx/model/bom.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
#
1515
# SPDX-License-Identifier: Apache-2.0
1616
# Copyright (c) OWASP Foundation. All Rights Reserved.
17+
18+
1719
import warnings
1820
from datetime import datetime
1921
from itertools import chain

cyclonedx/output/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
# limitations under the License.
1212
#
1313
# SPDX-License-Identifier: Apache-2.0
14+
# Copyright (c) OWASP Foundation. All Rights Reserved.
15+
1416

1517
"""
1618
Set of classes and methods for outputting our libraries internal Bom model to CycloneDX documents in varying formats

cyclonedx/parser/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
# limitations under the License.
1212
#
1313
# SPDX-License-Identifier: Apache-2.0
14+
# Copyright (c) OWASP Foundation. All Rights Reserved.
15+
1416

1517
"""
1618
Set of classes and methods which allow for quick creation of a Bom instance from your environment or Python project.

cyclonedx/schema/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
# limitations under the License.
1212
#
1313
# SPDX-License-Identifier: Apache-2.0
14+
# Copyright (c) OWASP Foundation. All Rights Reserved.
15+
1416

1517
from enum import Enum, auto, unique
1618
from typing import Any, Type, TypeVar

cyclonedx/schema/_res/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
# limitations under the License.
1212
#
1313
# SPDX-License-Identifier: Apache-2.0
14+
# Copyright (c) OWASP Foundation. All Rights Reserved.
15+
1416

1517
from os.path import dirname, join
1618
from typing import Dict, Optional

0 commit comments

Comments
 (0)