Metadata-Version: 2.4
Name: dbt-dagsterizer
Version: 0.1.0
Summary: Dagster automation driven by dbt metadata (Luban CI)
Requires-Python: >=3.12
Requires-Dist: click>=8.3.1
Requires-Dist: cookiecutter>=2.6.0
Requires-Dist: dagster-dbt<1,>=0.26
Requires-Dist: dagster<2,>=1.12
Requires-Dist: dbt-core<2,>=1.9
Requires-Dist: dbt-starrocks<2,>=1.9
Requires-Dist: pymysql>=1.1.0
Requires-Dist: ruamel-yaml>=0.19.1
Description-Content-Type: text/markdown

# dbt-dagsterizer

`dbt-dagsterizer` is a Python package that will host the reusable Dagster automation currently embedded in the Dagster+dbt+StarRocks code-location template.

This package is being introduced incrementally. The first step is to provide a stable CLI entrypoint and a minimal, always-loadable Dagster Definitions builder for empty/skeleton projects.

## CLI

```bash
dbt-dagsterizer --help
```

## Python

```python
from dbt_dagsterizer.api import build_definitions

defs = build_definitions(dbt_project_dir="./dbt_project")
```

