bml-connect-python 2.0.0__tar.gz → 2.0.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {bml_connect_python-2.0.0 → bml_connect_python-2.0.2}/PKG-INFO +5 -6
- {bml_connect_python-2.0.0 → bml_connect_python-2.0.2}/README.md +1 -1
- {bml_connect_python-2.0.0 → bml_connect_python-2.0.2}/pyproject.toml +5 -6
- {bml_connect_python-2.0.0 → bml_connect_python-2.0.2}/LICENSE +0 -0
- {bml_connect_python-2.0.0 → bml_connect_python-2.0.2}/src/bml_connect/__init__.py +0 -0
- {bml_connect_python-2.0.0 → bml_connect_python-2.0.2}/src/bml_connect/client.py +0 -0
- {bml_connect_python-2.0.0 → bml_connect_python-2.0.2}/src/bml_connect/crypto.py +0 -0
- {bml_connect_python-2.0.0 → bml_connect_python-2.0.2}/src/bml_connect/exceptions.py +0 -0
- {bml_connect_python-2.0.0 → bml_connect_python-2.0.2}/src/bml_connect/models.py +0 -0
- {bml_connect_python-2.0.0 → bml_connect_python-2.0.2}/src/bml_connect/resources.py +0 -0
- {bml_connect_python-2.0.0 → bml_connect_python-2.0.2}/src/bml_connect/signature.py +0 -0
- {bml_connect_python-2.0.0 → bml_connect_python-2.0.2}/src/bml_connect/transport.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: bml-connect-python
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.2
|
|
4
4
|
Summary: Python SDK for Bank of Maldives Connect API v2 with sync and async support, covering all four payment integration methods
|
|
5
5
|
Home-page: https://github.com/quillfires/bml-connect-python
|
|
6
6
|
License: MIT
|
|
@@ -9,7 +9,7 @@ Author: Fayaz (Quill)
|
|
|
9
9
|
Author-email: fayaz.quill@gmail.com
|
|
10
10
|
Maintainer: Fayaz (Quill)
|
|
11
11
|
Maintainer-email: fayaz.quill@gmail.com
|
|
12
|
-
Requires-Python: >=3.
|
|
12
|
+
Requires-Python: >=3.10,<4.0
|
|
13
13
|
Classifier: Development Status :: 5 - Production/Stable
|
|
14
14
|
Classifier: Framework :: AsyncIO
|
|
15
15
|
Classifier: Intended Audience :: Developers
|
|
@@ -19,11 +19,10 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
19
19
|
Classifier: Programming Language :: Python :: 3.11
|
|
20
20
|
Classifier: Programming Language :: Python :: 3.12
|
|
21
21
|
Classifier: Programming Language :: Python :: 3.13
|
|
22
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
23
22
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
24
23
|
Requires-Dist: aiohttp (>=3.13.3,<4.0.0)
|
|
25
|
-
Requires-Dist: cryptography (>=46.0.
|
|
26
|
-
Requires-Dist: requests (>=2.
|
|
24
|
+
Requires-Dist: cryptography (>=46.0.6)
|
|
25
|
+
Requires-Dist: requests (>=2.33.0)
|
|
27
26
|
Project-URL: Documentation, https://github.com/quillfires/bml-connect-python/wiki
|
|
28
27
|
Project-URL: Repository, https://github.com/quillfires/bml-connect-python
|
|
29
28
|
Description-Content-Type: text/markdown
|
|
@@ -88,7 +87,7 @@ Compatible with all Python frameworks including Django, Flask, FastAPI, and Sani
|
|
|
88
87
|
pip install bml-connect-python
|
|
89
88
|
```
|
|
90
89
|
|
|
91
|
-
**Requires Python 3.
|
|
90
|
+
**Requires Python 3.10+**
|
|
92
91
|
|
|
93
92
|
---
|
|
94
93
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "bml-connect-python"
|
|
3
|
-
version = "2.0.
|
|
3
|
+
version = "2.0.2"
|
|
4
4
|
description = "Python SDK for Bank of Maldives Connect API v2 with sync and async support, covering all four payment integration methods"
|
|
5
5
|
authors = ["Fayaz (Quill) <fayaz.quill@gmail.com>"]
|
|
6
6
|
maintainers = ["Fayaz (Quill) <fayaz.quill@gmail.com>"]
|
|
@@ -14,7 +14,6 @@ classifiers = [
|
|
|
14
14
|
"Development Status :: 5 - Production/Stable",
|
|
15
15
|
"Intended Audience :: Developers",
|
|
16
16
|
"License :: OSI Approved :: MIT License",
|
|
17
|
-
"Programming Language :: Python :: 3.9",
|
|
18
17
|
"Programming Language :: Python :: 3.10",
|
|
19
18
|
"Programming Language :: Python :: 3.11",
|
|
20
19
|
"Programming Language :: Python :: 3.12",
|
|
@@ -25,16 +24,16 @@ classifiers = [
|
|
|
25
24
|
packages = [{ include = "bml_connect", from = "src" }]
|
|
26
25
|
|
|
27
26
|
[tool.poetry.dependencies]
|
|
28
|
-
python = ">=3.
|
|
29
|
-
cryptography = ">=46.0.
|
|
30
|
-
requests = ">=2.
|
|
27
|
+
python = ">=3.10,<4.0"
|
|
28
|
+
cryptography = ">=46.0.6"
|
|
29
|
+
requests = ">=2.33.0"
|
|
31
30
|
aiohttp = "^3.13.3"
|
|
32
31
|
|
|
33
32
|
[tool.poetry.group.dev.dependencies]
|
|
34
33
|
pytest = ">=7.0"
|
|
35
34
|
pytest-asyncio = ">=0.21"
|
|
36
35
|
pytest-cov = ">=4.0"
|
|
37
|
-
black = ">=
|
|
36
|
+
black = {version = ">=26.3.1", markers = "python_version >= \"3.10\""}
|
|
38
37
|
flake8 = ">=6.0"
|
|
39
38
|
mypy = ">=1.0"
|
|
40
39
|
isort = ">=5.0"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|