Metadata-Version: 2.3
Name: shop_system_models
Version: 0.0.1.dev26571
Summary: Shared model definitions for shop system services
Author: Pavel Mulin
Author-email: pavel@tg-shops.com
Requires-Python: >=3.9
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
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
``` 
