Metadata-Version: 2.4
Name: shop-system-models
Version: 1.5.0.dev33608
Summary: Shared model definitions for shop system services
Author-email: Pavel Mulin <pavel@shopsbuilder.app>
Requires-Python: >=3.9
Requires-Dist: pydantic>=2.10.3
Description-Content-Type: text/markdown

# Shop System Models

A Python package containing shared models for different services in the shop system.

## Installation

```bash
pip install shop_system_models
```

Or add to your poetry project:

```bash
poetry add shop_system_models
```

## Usage

```python
from shop_system_models.shop_api import MetaBaseModel
from shop_system_models.shop_api.shop import ShopRequest, ShopResponse
``` 