terrakio-admin-api 0.5.10__tar.gz → 0.5.13__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.
- {terrakio_admin_api-0.5.10 → terrakio_admin_api-0.5.13}/PKG-INFO +2 -2
- {terrakio_admin_api-0.5.10 → terrakio_admin_api-0.5.13}/pyproject.toml +2 -2
- {terrakio_admin_api-0.5.10 → terrakio_admin_api-0.5.13}/terrakio_admin_api/__init__.py +1 -1
- {terrakio_admin_api-0.5.10 → terrakio_admin_api-0.5.13}/.gitignore +0 -0
- {terrakio_admin_api-0.5.10 → terrakio_admin_api-0.5.13}/README.md +0 -0
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: terrakio-admin-api
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.13
|
|
4
4
|
Summary: Admin version of the terrakio-python-api
|
|
5
5
|
Requires-Python: >=3.11
|
|
6
|
-
Requires-Dist: terrakio-core==0.5.
|
|
6
|
+
Requires-Dist: terrakio-core==0.5.13
|
|
7
7
|
Description-Content-Type: text/markdown
|
|
8
8
|
|
|
9
9
|
# Terrakio Admin API Client
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "terrakio-admin-api"
|
|
3
|
-
version = "0.5.
|
|
3
|
+
version = "0.5.13"
|
|
4
4
|
description = "Admin version of the terrakio-python-api"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.11"
|
|
7
7
|
dependencies = [
|
|
8
|
-
"terrakio-core==0.5.
|
|
8
|
+
"terrakio-core==0.5.13",
|
|
9
9
|
]
|
|
10
10
|
|
|
11
11
|
[build-system]
|
|
@@ -8,7 +8,7 @@ An admin API client for Terrakio.
|
|
|
8
8
|
# Suppress ONNX Runtime GPU device discovery warnings - MUST BE FIRST!
|
|
9
9
|
import os
|
|
10
10
|
os.environ['ORT_LOGGING_LEVEL'] = '3'
|
|
11
|
-
__version__ = "0.5.
|
|
11
|
+
__version__ = "0.5.13"
|
|
12
12
|
|
|
13
13
|
from terrakio_core import AsyncClient as CoreAsyncClient
|
|
14
14
|
from terrakio_core import Client as CoreClient
|
|
File without changes
|
|
File without changes
|