Metadata-Version: 2.4
Name: attack-on-domain
Version: 0.0.17
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/attack-on-domain
Project-URL: Repository, https://github.com/AlfonsoCuesta/attack-on-domain
Project-URL: Issues, https://github.com/AlfonsoCuesta/attack-on-domain/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: polyfactory>=3.3.0
Requires-Dist: pydantic>=2.12.4
Requires-Dist: typing-inspect>=0.9.0
Dynamic: license-file

# attack-on-domain

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

## Install

```bash
pip install attack-on-domain
```

With **uv** in another project:

```bash
uv add attack-on-domain
```

Or install into the active environment:

```bash
uv pip install attack-on-domain
```

## Usage

Import only from the public API:

```python
from aod.domain import (
    BoundedContext,
    Entity,
    ValueObject,
)
from aod.domain import DomainException
from aod.events import Event
```

Requires **Python 3.14+**.
