python-ort 0.1.3__tar.gz → 0.1.4__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.3 → python_ort-0.1.4}/PKG-INFO +1 -1
- {python_ort-0.1.3 → python_ort-0.1.4}/pyproject.toml +1 -1
- {python_ort-0.1.3 → python_ort-0.1.4}/src/ort/models/analyzer_configurations.py +6 -6
- {python_ort-0.1.3 → python_ort-0.1.4}/src/ort/models/repository_configuration.py +16 -7
- {python_ort-0.1.3 → python_ort-0.1.4}/LICENSE +0 -0
- {python_ort-0.1.3 → python_ort-0.1.4}/README.md +0 -0
- {python_ort-0.1.3 → python_ort-0.1.4}/src/ort/__init__.py +0 -0
- {python_ort-0.1.3 → python_ort-0.1.4}/src/ort/models/__init__.py +0 -0
- {python_ort-0.1.3 → python_ort-0.1.4}/src/ort/models/ort_configuration.py +0 -0
- {python_ort-0.1.3 → python_ort-0.1.4}/src/ort/models/package_managers.py +0 -0
- {python_ort-0.1.3 → python_ort-0.1.4}/src/ort/models/resolutions.py +0 -0
|
@@ -24,9 +24,9 @@ class OrtAnalyzerConfigurations(BaseModel):
|
|
|
24
24
|
model_config = ConfigDict(
|
|
25
25
|
extra="forbid",
|
|
26
26
|
)
|
|
27
|
-
allow_dynamic_versions: bool | None = Field(None
|
|
28
|
-
enabled_package_managers: list[OrtPackageManagers] | None = Field(None
|
|
29
|
-
disabled_package_managers: list[OrtPackageManagers] | None = Field(None
|
|
30
|
-
package_managers: OrtPackageManagerConfigurations | None = Field(None
|
|
31
|
-
sw360_configuration: Sw360Configuration | None = Field(None
|
|
32
|
-
skip_excluded: bool | None = Field(None
|
|
27
|
+
allow_dynamic_versions: bool | None = Field(None)
|
|
28
|
+
enabled_package_managers: list[OrtPackageManagers] | None = Field(None)
|
|
29
|
+
disabled_package_managers: list[OrtPackageManagers] | None = Field(None)
|
|
30
|
+
package_managers: OrtPackageManagerConfigurations | None = Field(None)
|
|
31
|
+
sw360_configuration: Sw360Configuration | None = Field(None)
|
|
32
|
+
skip_excluded: bool | None = Field(None)
|
|
@@ -372,23 +372,32 @@ class OrtRepositoryConfiguration(BaseModel):
|
|
|
372
372
|
Each field corresponds to a specific aspect of the repository's configuration.
|
|
373
373
|
"""
|
|
374
374
|
|
|
375
|
-
analyzer: OrtAnalyzerConfigurations | None =
|
|
375
|
+
analyzer: OrtAnalyzerConfigurations | None = Field(
|
|
376
|
+
None,
|
|
377
|
+
description="Define Analyzer specific options",
|
|
378
|
+
)
|
|
376
379
|
includes: OrtRepositoryConfigurationIncludes | None = Field(
|
|
377
|
-
None,
|
|
380
|
+
None,
|
|
381
|
+
description="Defines which parts of a repository should be included.",
|
|
378
382
|
)
|
|
379
383
|
excludes: OrtRepositoryConfigurationExcludes | None = Field(
|
|
380
|
-
None,
|
|
384
|
+
None,
|
|
385
|
+
description="Defines which parts of a repository should be excluded.",
|
|
381
386
|
)
|
|
382
387
|
resolutions: ResolutionsSchema | None = None
|
|
383
388
|
curations: OrtRepositoryConfigurationCurations | OrtRepositoryConfigurationCurations1 | None = Field(
|
|
384
|
-
None,
|
|
389
|
+
None,
|
|
390
|
+
description="Curations for artifacts in a repository.",
|
|
385
391
|
)
|
|
386
392
|
package_configurations: list[OrtPackageManagerConfigurations] | None = Field(
|
|
387
|
-
None,
|
|
393
|
+
None,
|
|
394
|
+
description="A configuration for a specific package and provenance.",
|
|
388
395
|
)
|
|
389
396
|
license_choices: OrtRepositoryConfigurationLicenseChoices | None = Field(
|
|
390
|
-
None,
|
|
397
|
+
None,
|
|
398
|
+
description="A configuration to select a license from a multi-licensed package.",
|
|
391
399
|
)
|
|
392
400
|
snippet_choices: list[OrtRepositoryConfigurationSnippetChoice] | None = Field(
|
|
393
|
-
None,
|
|
401
|
+
None,
|
|
402
|
+
description="A configuration to select a snippet from a package with multiple snippet findings.",
|
|
394
403
|
)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|