opa-python-client 2.0.3__tar.gz → 2.0.4__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.
- {opa_python_client-2.0.3 → opa_python_client-2.0.4}/PKG-INFO +10 -8
- {opa_python_client-2.0.3 → opa_python_client-2.0.4}/opa_client/test/test_opa_client.py +0 -2
- {opa_python_client-2.0.3 → opa_python_client-2.0.4}/pyproject.toml +6 -6
- {opa_python_client-2.0.3 → opa_python_client-2.0.4}/LICENCE.md +0 -0
- {opa_python_client-2.0.3 → opa_python_client-2.0.4}/README.md +0 -0
- {opa_python_client-2.0.3 → opa_python_client-2.0.4}/opa_client/__init__.py +0 -0
- {opa_python_client-2.0.3 → opa_python_client-2.0.4}/opa_client/base.py +0 -0
- {opa_python_client-2.0.3 → opa_python_client-2.0.4}/opa_client/errors.py +0 -0
- {opa_python_client-2.0.3 → opa_python_client-2.0.4}/opa_client/opa.py +0 -0
- {opa_python_client-2.0.3 → opa_python_client-2.0.4}/opa_client/opa_async.py +0 -0
- {opa_python_client-2.0.3 → opa_python_client-2.0.4}/opa_client/test/__init__.py +0 -0
- {opa_python_client-2.0.3 → opa_python_client-2.0.4}/opa_client/test/test_async_client.py +0 -0
- {opa_python_client-2.0.3 → opa_python_client-2.0.4}/opa_client/test/test_integaration_opa.py +0 -0
- {opa_python_client-2.0.3 → opa_python_client-2.0.4}/opa_client/test/test_opa.py +0 -0
|
@@ -1,26 +1,28 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: opa-python-client
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.4
|
|
4
4
|
Summary: Client for connection to the OPA service
|
|
5
5
|
License: MIT
|
|
6
|
+
License-File: LICENCE.md
|
|
6
7
|
Author: Tural Muradov
|
|
7
8
|
Author-email: tural.muradoov@gmail.com
|
|
8
|
-
Requires-Python: >=3.
|
|
9
|
+
Requires-Python: >=3.10,<4.0
|
|
9
10
|
Classifier: Intended Audience :: Developers
|
|
10
11
|
Classifier: License :: OSI Approved :: MIT License
|
|
11
12
|
Classifier: Operating System :: OS Independent
|
|
12
13
|
Classifier: Programming Language :: Python
|
|
13
14
|
Classifier: Programming Language :: Python :: 3
|
|
14
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
15
15
|
Classifier: Programming Language :: Python :: 3.10
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.11
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.12
|
|
18
18
|
Classifier: Programming Language :: Python :: 3.13
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
19
20
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
20
|
-
|
|
21
|
-
Requires-Dist:
|
|
22
|
-
Requires-Dist:
|
|
23
|
-
Requires-Dist:
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
22
|
+
Requires-Dist: aiofiles (>=25.1.0,<26.0.0)
|
|
23
|
+
Requires-Dist: aiohttp[speedups] (>=3.13.3,<4.0.0)
|
|
24
|
+
Requires-Dist: requests (>=2.32.5,<3.0.0)
|
|
25
|
+
Requires-Dist: urllib3 (>=2.6.3,<3.0.0)
|
|
24
26
|
Project-URL: Homepage, https://github.com/Turall/OPA-python-client
|
|
25
27
|
Project-URL: Repository, https://github.com/Turall/OPA-python-client
|
|
26
28
|
Description-Content-Type: text/markdown
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "opa-python-client"
|
|
3
|
-
version = "2.0.
|
|
3
|
+
version = "2.0.4"
|
|
4
4
|
description = "Client for connection to the OPA service"
|
|
5
5
|
authors = ["Tural Muradov <tural.muradoov@gmail.com>"]
|
|
6
6
|
license = "MIT"
|
|
@@ -21,11 +21,11 @@ packages = [
|
|
|
21
21
|
]
|
|
22
22
|
|
|
23
23
|
[tool.poetry.dependencies]
|
|
24
|
-
python = "^3.
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
24
|
+
python = "^3.10"
|
|
25
|
+
aiohttp = {extras = ["speedups"], version = "^3.13.3"}
|
|
26
|
+
requests = "^2.32.5"
|
|
27
|
+
urllib3 = "^2.6.3"
|
|
28
|
+
aiofiles = "^25.1.0"
|
|
29
29
|
|
|
30
30
|
[tool.poetry.group.dev.dependencies]
|
|
31
31
|
pytest = "^8.3.3"
|
|
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
|
{opa_python_client-2.0.3 → opa_python_client-2.0.4}/opa_client/test/test_integaration_opa.py
RENAMED
|
File without changes
|
|
File without changes
|