python-ort 0.1.2__tar.gz → 0.1.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of python-ort might be problematic. Click here for more details.
- {python_ort-0.1.2 → python_ort-0.1.3}/PKG-INFO +1 -1
- {python_ort-0.1.2 → python_ort-0.1.3}/pyproject.toml +1 -1
- {python_ort-0.1.2 → python_ort-0.1.3}/src/ort/__init__.py +3 -1
- {python_ort-0.1.2 → python_ort-0.1.3}/LICENSE +0 -0
- {python_ort-0.1.2 → python_ort-0.1.3}/README.md +0 -0
- {python_ort-0.1.2 → python_ort-0.1.3}/src/ort/models/__init__.py +0 -0
- {python_ort-0.1.2 → python_ort-0.1.3}/src/ort/models/analyzer_configurations.py +0 -0
- {python_ort-0.1.2 → python_ort-0.1.3}/src/ort/models/ort_configuration.py +0 -0
- {python_ort-0.1.2 → python_ort-0.1.3}/src/ort/models/package_managers.py +0 -0
- {python_ort-0.1.2 → python_ort-0.1.3}/src/ort/models/repository_configuration.py +0 -0
- {python_ort-0.1.2 → python_ort-0.1.3}/src/ort/models/resolutions.py +0 -0
|
@@ -5,12 +5,14 @@
|
|
|
5
5
|
from ort.models.analyzer_configurations import OrtAnalyzerConfigurations
|
|
6
6
|
from ort.models.ort_configuration import OrtConfiguration, Scanner, Severity, Storages
|
|
7
7
|
from ort.models.package_managers import OrtPackageManagerConfigurations, OrtPackageManagers
|
|
8
|
+
from ort.models.repository_configuration import OrtRepositoryConfiguration
|
|
8
9
|
|
|
9
10
|
__all__ = [
|
|
10
11
|
"OrtAnalyzerConfigurations",
|
|
12
|
+
"OrtConfiguration",
|
|
11
13
|
"OrtPackageManagerConfigurations",
|
|
12
14
|
"OrtPackageManagers",
|
|
13
|
-
"
|
|
15
|
+
"OrtRepositoryConfiguration",
|
|
14
16
|
"Scanner",
|
|
15
17
|
"Severity",
|
|
16
18
|
"Storages",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|