Metadata-Version: 2.4
Name: sekoia-automation-models
Version: 1.1.0
Summary: Standalone Pydantic models (OCSF asset-connector) shared across Sekoia services and the `sekoia-automation-sdk`
Project-URL: Homepage, https://sekoia.io/
Project-URL: Repository, https://github.com/SEKOIA-IO/sekoia-automation-models
Project-URL: Documentation, https://docs.sekoia.io/
Author: SEKOIA.IO
License-Expression: MIT
License-File: LICENSE
Requires-Python: <4,>=3.11
Requires-Dist: pydantic<3.0.0,>=2.10
Description-Content-Type: text/markdown

# sekoia-automation-models

Standalone Pydantic models shared across Sekoia services and the `sekoia-automation-sdk`.

The package currently exposes the OCSF asset-connector models under
`sekoia_automation_models.ocsf`. Its only runtime dependency is `pydantic`, so
services can consume the models without pulling the full automation SDK.

## Install

```bash
pip install sekoia-automation-models
```

## Usage

```python
from sekoia_automation_models.ocsf.software import SoftwareEnrichmentObject
```

## Development

```bash
uv sync
uv run ruff check .
uv run mypy
uv run pytest
```
