Metadata-Version: 2.4
Name: databridge-models
Version: 0.43.0
Summary: DataBridge AI Models - Shared data models, enums, and schemas
Author: DataBridge AI Team
License: MIT
Requires-Python: >=3.10
Requires-Dist: pydantic>=2.0
Requires-Dist: sqlalchemy>=2.0
Provides-Extra: dev
Requires-Dist: pytest-cov>=4.0; extra == 'dev'
Requires-Dist: pytest>=7.0; extra == 'dev'
Description-Content-Type: text/markdown

# DataBridge Models

Shared data models and enums for DataBridge AI applications.

## Installation

```bash
pip install -e .
```

## Contents

- `Base` - SQLAlchemy declarative base with common mixins
- `SQLDialect` - Supported SQL dialects enum
- `TableStatus` - Table status enum
- `FormulaType` - Formula type enum
- `AggregationType` - Aggregation type enum
- `JoinType` - Join type enum

## Usage

```python
from databridge_models import Base, SQLDialect, TableStatus
from databridge_models.enums import FormulaType, AggregationType
```
