Metadata-Version: 2.4
Name: entirius-py-autopay-sdk
Version: 2.0.0
Summary: Autopay (BLIK/card) payment gateway SDK
Project-URL: Repository, https://github.com/entirius/entirius-py-autopay-sdk
Author: Entirius
License-Expression: MPL-2.0
License-File: LICENSE
Requires-Python: >=3.11
Requires-Dist: entirius-py-process-logger>=2.0.0
Requires-Dist: requests>=2.28.1
Provides-Extra: dev
Requires-Dist: pre-commit; extra == 'dev'
Requires-Dist: ruff; extra == 'dev'
Provides-Extra: test
Requires-Dist: pytest; extra == 'test'
Description-Content-Type: text/markdown

# autopay-sdk

Autopay (BLIK / card) payment gateway SDK — transactions and card operations over the Autopay REST API.

## Installation

```shell
pip install entirius-py-autopay-sdk
```

## Usage

```python
from autopay_sdk.services.client import Autopay

autopay = Autopay(...)
```

## Development

```shell
make install     # sync dependencies (uv)
make check       # lint + format check (ruff)
make test        # test suite (pytest)
```

Development and agent instructions: [AGENTS.md](AGENTS.md).

## License

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