Metadata-Version: 2.4
Name: deedee-domain
Version: 0.1.0
Summary: DDD building blocks: entities, value objects, bounded contexts, and validation helpers.
Author: Alfonso Cuesta
License-Expression: Apache-2.0
Project-URL: Homepage, https://github.com/AlfonsoCuesta/deedee
Project-URL: Repository, https://github.com/AlfonsoCuesta/deedee
Project-URL: Issues, https://github.com/AlfonsoCuesta/deedee/issues
Keywords: ddd,domain-driven-design,entity,value-object
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Typing :: Typed
Requires-Python: >=3.14
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pydantic>=2.12.4
Requires-Dist: typing-inspect>=0.9.0
Dynamic: license-file

# deedee

Helpers for **domain-driven design** in Python: entities, value objects, bounded contexts, domain events, and Pydantic v2–based validation.

## Install

```bash
pip install deedee-domain
```

With **uv** in another project (adds the dependency to that project’s `pyproject.toml`):

```bash
uv add deedee-domain
```

Or install into the active environment without editing a project file:

```bash
uv pip install deedee-domain
```

The installed module is still named `deedee`, so imports do not change.

## Usage

Import only from the top-level package:

```python
from deedee import (
    BoundedContext,
    DomainEvent,
    DomainException,
    Entity,
    ValueObject,
)
```

Requires **Python 3.14+**.
