12 lines
291 B
Python
12 lines
291 B
Python
#!/usr/bin/env python3
|
|
"""Shared path helpers for the workspace/delivery project layout."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from pathlib import Path
|
|
|
|
|
|
DELIVERY_ROOT = Path(__file__).resolve().parent.parent
|
|
PROJECT_ROOT = DELIVERY_ROOT.parent
|
|
WORKSPACE_ROOT = PROJECT_ROOT / "workspace"
|