High-level install — calls ``setup()`` and returns created files.
(
self,
project_root: Path,
manifest: IntegrationManifest,
parsed_options: dict[str, Any] | None = None,
**opts: Any,
)
| 746 | # -- Convenience helpers for subclasses ------------------------------- |
| 747 | |
| 748 | def install( |
| 749 | self, |
| 750 | project_root: Path, |
| 751 | manifest: IntegrationManifest, |
| 752 | parsed_options: dict[str, Any] | None = None, |
| 753 | **opts: Any, |
| 754 | ) -> list[Path]: |
| 755 | """High-level install — calls ``setup()`` and returns created files.""" |
| 756 | return self.setup(project_root, manifest, parsed_options=parsed_options, **opts) |
| 757 | |
| 758 | def uninstall( |
| 759 | self, |