Metadata-Version: 2.4
Name: entirius-py-paynow-sdk
Version: 2.0.0
Summary: Paynow payment gateway SDK
Project-URL: Repository, https://github.com/entirius/entirius-py-paynow-sdk
Author: Entirius
License-Expression: MPL-2.0
License-File: LICENSE
Requires-Python: >=3.11
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

# paynow-sdk

Paynow payment gateway SDK — payments, status checks, and notification signature verification
over the Paynow REST API.

## Installation

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

## Usage

```python
from paynow_sdk.services.client import PayNow

paynow = PayNow(api_key="...", signature_key="...", is_sandbox=True)
```

## 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).
