Metadata-Version: 2.4
Name: entirius-django-suppliers
Version: 2.0.0
Summary: Suppliers Django module for Volkanos
Project-URL: Repository, https://github.com/entirius/entirius-django-suppliers
Author: Entirius
License-Expression: MPL-2.0
License-File: LICENSE
Requires-Python: >=3.11
Requires-Dist: celery>=5.3
Requires-Dist: django>=5.0
Requires-Dist: djangorestframework-simplejwt>=5.3
Requires-Dist: djangorestframework>=3.14
Requires-Dist: drf-spectacular>=0.27
Requires-Dist: entirius-django-pim>=3.0.0
Requires-Dist: entirius-django-regional>=2.0.1
Requires-Dist: entirius-django-utils>=2.0.0
Requires-Dist: lxml>=5.0
Requires-Dist: pydantic>=2.0
Requires-Dist: requests>=2.31
Provides-Extra: dev
Requires-Dist: pre-commit; extra == 'dev'
Requires-Dist: ruff; extra == 'dev'
Provides-Extra: qms
Requires-Dist: entirius-django-qms>=4.0.0; extra == 'qms'
Provides-Extra: test
Requires-Dist: dj-database-url; extra == 'test'
Requires-Dist: factory-boy; extra == 'test'
Requires-Dist: psycopg[binary]; extra == 'test'
Requires-Dist: pytest; extra == 'test'
Requires-Dist: pytest-django; extra == 'test'
Description-Content-Type: text/markdown

# django-suppliers

Suppliers Django module for the Volkanos ecommerce platform — supplier registry, feed-driven
product import pipeline, review/approval workflow, one-time push to PIM and cyclic delta refresh
of cost / qty / physical attributes. Cross-supplier features: auto EAN-match, preferred-supplier
selection, per-field audit log and a CMS bridge for "supplier touched this SKU" badges.

## Installation

```shell
pip install entirius-django-suppliers
```

Add the app to your project:

```python
INSTALLED_APPS = [
    ...
    "django_suppliers",
]
```

Optional QMS stock integration (soft dependency — degrades gracefully when absent):

```shell
pip install "entirius-django-suppliers[qms]"
```

## Development

```shell
make install     # sync dependencies (uv)
make check       # lint + format check (ruff)
make test        # test suite (pytest + pytest-django, postgres via DATABASE_URL)
```

Architecture, API and model reference: [AGENTS.md](AGENTS.md), [docs/](docs/).

## License

Mozilla Public License 2.0 — see [LICENSE](LICENSE).
