spdx_tools.spdx3.model.licensing

 1# SPDX-FileCopyrightText: 2023 spdx contributors
 2#
 3# SPDX-License-Identifier: Apache-2.0
 4from .any_license_info import AnyLicenseInfo
 5from .conjunctive_license_set import ConjunctiveLicenseSet
 6from .custom_license import CustomLicense
 7from .custom_license_addition import CustomLicenseAddition
 8from .disjunctive_license_set import DisjunctiveLicenseSet
 9from .license import License
10from .license_addition import LicenseAddition
11from .license_field import LicenseField
12from .listed_license import ListedLicense
13from .listed_license_exception import ListedLicenseException
14from .no_assertion_license import NoAssertionLicense
15from .none_license import NoneLicense
16from .or_later_operator import OrLaterOperator
17from .with_addition_operator import WithAdditionOperator