Metadata-Version: 2.4
Name: dbt-metricflow
Version: 0.8.0
Summary: Execute commands against the MetricFlow semantic layer with dbt.
Project-URL: Source Code, https://github.com/dbt-labs/metricflow/tree/main/dbt-metricflow
Author-email: dbt Labs <info@dbtlabs.com>
License-Expression: BUSL-1.1
License-File: LICENSE
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: <3.13,>=3.9
Requires-Dist: click>=8.1.6
Requires-Dist: dbt-core<1.10.0,>=1.9.0
Requires-Dist: dbt-semantic-interfaces
Requires-Dist: halo<0.1.0,>=0.0.31
Requires-Dist: jinja2>=3.1.3
Requires-Dist: metricflow<0.208.0,>=0.207.1
Requires-Dist: update-checker<0.19.0,>=0.18.0
Provides-Extra: dbt-bigquery
Requires-Dist: dbt-bigquery<1.10.0,>=1.9.0; extra == 'dbt-bigquery'
Provides-Extra: dbt-databricks
Requires-Dist: dbt-databricks<1.10.0,>=1.9.0; extra == 'dbt-databricks'
Provides-Extra: dbt-duckdb
Requires-Dist: dbt-duckdb<1.10.0,>=1.9.0; extra == 'dbt-duckdb'
Provides-Extra: dbt-postgres
Requires-Dist: dbt-postgres<1.10.0,>=1.9.0; extra == 'dbt-postgres'
Provides-Extra: dbt-redshift
Requires-Dist: dbt-redshift<1.10.0,>=1.9.0; extra == 'dbt-redshift'
Provides-Extra: dbt-snowflake
Requires-Dist: dbt-snowflake<1.10.0,>=1.9.0; extra == 'dbt-snowflake'
Provides-Extra: dbt-trino
Requires-Dist: dbt-trino<1.10.0,>=1.9.0; extra == 'dbt-trino'
Description-Content-Type: text/markdown

<p align="center">
    <a target="_blank" href="https://twitter.com/dbt_labs">
    <img src="https://img.shields.io/twitter/follow/dbt_labs?labelColor=image.png&color=163B36&logo=twitter&style=flat">
  </a>
    <a target="_blank" href="https://www.getdbt.com/community/">
    <img src="https://img.shields.io/badge/Slack-join-163B36">
  </a>
    <a href="https://github.com/psf/black"><img src="https://img.shields.io/badge/code%20style-black-000000.svg" /></a>
</p>

# Welcome to dbt-metricflow

This repo encapsulates the dbt-core, MetricFlow, and supported dbt-adapters packages. This package will manage the versioning between these packages such that they are compatible with each other.

## Repo use cases
- dbt-core and MetricFlow both depend on dbt-semantic-interfaces, which includes the schemas and interfaces for objects related to the semantic layer. Bundled versioning is necessary to ensure that the dbt-core and MetricFlow versions have compatible dbt-semantic-interfaces dependencies.
- Bundling the installation makes it much easier on end users, as they no longer need to install `dbt-core` + `metricflow` + `dbt-adapter` and reconcile versions - instead they can simply install `dbt-metricflow[adapter]`.
- Because this encapsulates both dbt-core and MetricFlow, this repo can be used to build logic that should be shared across the packages. For example, the CLI from MetricFlow can live in this repo, as it uses logic from all of the bundled packages. This can streamline dependency requirements in MetricFlow.
