Metadata-Version: 2.4
Name: vd-fabric-dlt-utils
Version: 0.1.0
Summary: Shared runtime utilities for dlt pipelines in VD Studio — AKV secrets, OneLake destination, audit, observability
Author-email: Vibedata <eng@acceleratedata.ai>
License: MIT
Requires-Python: >=3.10
Requires-Dist: adlfs>=2024.2.0
Requires-Dist: azure-identity>=1.15.0
Requires-Dist: azure-keyvault-secrets>=4.8.0
Requires-Dist: dlt[deltalake,filesystem]>=1.0.0
Requires-Dist: pyyaml>=6.0
Provides-Extra: dev
Requires-Dist: pytest-mock>=3.12; extra == 'dev'
Requires-Dist: pytest>=8.0; extra == 'dev'
Description-Content-Type: text/markdown

# vd-fabric-dlt-utils

Shared runtime utilities for dlt pipelines in VD Studio.

- AKV secret provider (local SDK + Fabric notebookutils)
- OneLake destination resolver (local SP + Fabric mount)
- Audit (trace -> delta tables)
- Observability (structured JSONL logging)

## Usage

```python
# Cell 0 — bootstrap
from vd_fabric_dlt_utils.bootstrap import setup_environment
destination = setup_environment()

# Cell 1+ — pipeline
pipeline = dlt.pipeline(..., destination=destination)
```
