python-terminusgps 1.1.1__tar.gz → 1.1.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.
- {python_terminusgps-1.1.1 → python_terminusgps-1.1.2}/PKG-INFO +2 -2
- {python_terminusgps-1.1.1 → python_terminusgps-1.1.2}/pyproject.toml +2 -2
- {python_terminusgps-1.1.1 → python_terminusgps-1.1.2}/uv.lock +2 -2
- {python_terminusgps-1.1.1 → python_terminusgps-1.1.2}/.gitignore +0 -0
- {python_terminusgps-1.1.1 → python_terminusgps-1.1.2}/COPYING +0 -0
- {python_terminusgps-1.1.1 → python_terminusgps-1.1.2}/README.md +0 -0
- {python_terminusgps-1.1.1 → python_terminusgps-1.1.2}/requirements.txt +0 -0
- {python_terminusgps-1.1.1 → python_terminusgps-1.1.2}/terminusgps/__init__.py +0 -0
- {python_terminusgps-1.1.1 → python_terminusgps-1.1.2}/terminusgps/authorizenet/__init__.py +0 -0
- {python_terminusgps-1.1.1 → python_terminusgps-1.1.2}/terminusgps/authorizenet/auth.py +0 -0
- {python_terminusgps-1.1.1 → python_terminusgps-1.1.2}/terminusgps/aws/__init__.py +0 -0
- {python_terminusgps-1.1.1 → python_terminusgps-1.1.2}/terminusgps/aws/secrets.py +0 -0
- {python_terminusgps-1.1.1 → python_terminusgps-1.1.2}/terminusgps/wialon/__init__.py +0 -0
- {python_terminusgps-1.1.1 → python_terminusgps-1.1.2}/terminusgps/wialon/constants.py +0 -0
- {python_terminusgps-1.1.1 → python_terminusgps-1.1.2}/terminusgps/wialon/errors.py +0 -0
- {python_terminusgps-1.1.1 → python_terminusgps-1.1.2}/terminusgps/wialon/flags.py +0 -0
- {python_terminusgps-1.1.1 → python_terminusgps-1.1.2}/terminusgps/wialon/items/__init__.py +0 -0
- {python_terminusgps-1.1.1 → python_terminusgps-1.1.2}/terminusgps/wialon/items/base.py +0 -0
- {python_terminusgps-1.1.1 → python_terminusgps-1.1.2}/terminusgps/wialon/items/resource.py +0 -0
- {python_terminusgps-1.1.1 → python_terminusgps-1.1.2}/terminusgps/wialon/items/retranslator.py +0 -0
- {python_terminusgps-1.1.1 → python_terminusgps-1.1.2}/terminusgps/wialon/items/route.py +0 -0
- {python_terminusgps-1.1.1 → python_terminusgps-1.1.2}/terminusgps/wialon/items/unit.py +0 -0
- {python_terminusgps-1.1.1 → python_terminusgps-1.1.2}/terminusgps/wialon/items/unit_group.py +0 -0
- {python_terminusgps-1.1.1 → python_terminusgps-1.1.2}/terminusgps/wialon/items/user.py +0 -0
- {python_terminusgps-1.1.1 → python_terminusgps-1.1.2}/terminusgps/wialon/session.py +0 -0
- {python_terminusgps-1.1.1 → python_terminusgps-1.1.2}/terminusgps/wialon/utils.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: python-terminusgps
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.2
|
|
4
4
|
Summary: Provides abstractions/utilities for working with Wialon API, Authorize.NET API, AWS API, and more.
|
|
5
5
|
Author-email: Blake Nall <blake@terminusgps.com>
|
|
6
6
|
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
|
|
@@ -11,6 +11,6 @@ Classifier: Programming Language :: Python :: 3.13
|
|
|
11
11
|
Requires-Python: >=3.12
|
|
12
12
|
Requires-Dist: argparse>=1.4.0
|
|
13
13
|
Requires-Dist: authorizenet>=1.1.5
|
|
14
|
-
Requires-Dist: boto3>=1.
|
|
14
|
+
Requires-Dist: boto3>=1.34.144
|
|
15
15
|
Requires-Dist: django>=5.1.4
|
|
16
16
|
Requires-Dist: python-wialon>=1.2.4
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "python-terminusgps"
|
|
3
|
-
version = "1.1.
|
|
3
|
+
version = "1.1.2"
|
|
4
4
|
description = "Provides abstractions/utilities for working with Wialon API, Authorize.NET API, AWS API, and more."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
authors = [ {name = "Blake Nall", email = "blake@terminusgps.com" } ]
|
|
@@ -15,7 +15,7 @@ requires-python = ">=3.12"
|
|
|
15
15
|
dependencies = [
|
|
16
16
|
"argparse>=1.4.0",
|
|
17
17
|
"authorizenet>=1.1.5",
|
|
18
|
-
"boto3>=1.
|
|
18
|
+
"boto3>=1.34.144",
|
|
19
19
|
"django>=5.1.4",
|
|
20
20
|
"python-wialon>=1.2.4",
|
|
21
21
|
]
|
|
@@ -176,7 +176,7 @@ wheels = [
|
|
|
176
176
|
|
|
177
177
|
[[package]]
|
|
178
178
|
name = "python-terminusgps"
|
|
179
|
-
version = "1.1.
|
|
179
|
+
version = "1.1.1"
|
|
180
180
|
source = { editable = "." }
|
|
181
181
|
dependencies = [
|
|
182
182
|
{ name = "argparse" },
|
|
@@ -190,7 +190,7 @@ dependencies = [
|
|
|
190
190
|
requires-dist = [
|
|
191
191
|
{ name = "argparse", specifier = ">=1.4.0" },
|
|
192
192
|
{ name = "authorizenet", specifier = ">=1.1.5" },
|
|
193
|
-
{ name = "boto3", specifier = ">=1.
|
|
193
|
+
{ name = "boto3", specifier = ">=1.34.144" },
|
|
194
194
|
{ name = "django", specifier = ">=5.1.4" },
|
|
195
195
|
{ name = "python-wialon", specifier = ">=1.2.4" },
|
|
196
196
|
]
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_terminusgps-1.1.1 → python_terminusgps-1.1.2}/terminusgps/wialon/items/retranslator.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_terminusgps-1.1.1 → python_terminusgps-1.1.2}/terminusgps/wialon/items/unit_group.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|