()
| 54 | |
| 55 | |
| 56 | def build_workspace_setup() -> WorkspaceSetup: |
| 57 | return WorkspaceSetup( |
| 58 | python_version='.'.join(str(part) for part in sys.version_info[:3]), |
| 59 | implementation=platform.python_implementation(), |
| 60 | platform_name=platform.platform(), |
| 61 | ) |
| 62 | |
| 63 | |
| 64 | def run_setup(cwd: Path | None = None, trusted: bool = True) -> SetupReport: |
no test coverage detected