python-terminusgps 1.0.0__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.0.0/PKG-INFO +15 -0
- python_terminusgps-1.0.0/README.md +0 -0
- python_terminusgps-1.0.0/pyproject.toml +65 -0
- python_terminusgps-1.0.0/python_terminusgps.egg-info/PKG-INFO +15 -0
- python_terminusgps-1.0.0/python_terminusgps.egg-info/SOURCES.txt +8 -0
- python_terminusgps-1.0.0/python_terminusgps.egg-info/dependency_links.txt +1 -0
- python_terminusgps-1.0.0/python_terminusgps.egg-info/requires.txt +3 -0
- python_terminusgps-1.0.0/python_terminusgps.egg-info/top_level.txt +1 -0
- python_terminusgps-1.0.0/setup.cfg +4 -0
- python_terminusgps-1.0.0/terminusgps/__init__.py +0 -0
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: python-terminusgps
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Provides abstractions/utilities for working with Wialon and Authorize.NET APIs.
|
|
5
|
+
Author-email: Blake Nall <blake@terminusgps.com>
|
|
6
|
+
Classifier: Programming Language :: Python :: 3
|
|
7
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
8
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
|
|
11
|
+
Requires-Python: >=3.12
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
Requires-Dist: argparse>=1.4.0
|
|
14
|
+
Requires-Dist: authorizenet>=1.1.5
|
|
15
|
+
Requires-Dist: python-wialon>=1.2.4
|
|
File without changes
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "python-terminusgps"
|
|
3
|
+
version = "1.0.0"
|
|
4
|
+
description = "Provides abstractions/utilities for working with Wialon and Authorize.NET APIs."
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
authors = [ {name = "Blake Nall", email = "blake@terminusgps.com" } ]
|
|
7
|
+
classifiers = [
|
|
8
|
+
"Programming Language :: Python :: 3",
|
|
9
|
+
"Programming Language :: Python :: 3.12",
|
|
10
|
+
"Programming Language :: Python :: 3.13",
|
|
11
|
+
"Operating System :: OS Independent",
|
|
12
|
+
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
|
|
13
|
+
]
|
|
14
|
+
requires-python = ">=3.12"
|
|
15
|
+
dependencies = [
|
|
16
|
+
"argparse>=1.4.0",
|
|
17
|
+
"authorizenet>=1.1.5",
|
|
18
|
+
"python-wialon>=1.2.4",
|
|
19
|
+
]
|
|
20
|
+
|
|
21
|
+
[dependency-groups]
|
|
22
|
+
dev = [
|
|
23
|
+
"setuptools>=75.6.0",
|
|
24
|
+
]
|
|
25
|
+
|
|
26
|
+
[build-system]
|
|
27
|
+
requires = ["setuptools", "setuptools-scm"]
|
|
28
|
+
build-backend = "setuptools.build_meta"
|
|
29
|
+
|
|
30
|
+
[tool.setuptools]
|
|
31
|
+
packages = ["terminusgps"]
|
|
32
|
+
|
|
33
|
+
[tool.ruff]
|
|
34
|
+
exclude = [
|
|
35
|
+
".git",
|
|
36
|
+
".gitignore",
|
|
37
|
+
".venv",
|
|
38
|
+
"venv",
|
|
39
|
+
".vscode",
|
|
40
|
+
"__pycache__",
|
|
41
|
+
"site-packages",
|
|
42
|
+
"dist",
|
|
43
|
+
"build",
|
|
44
|
+
]
|
|
45
|
+
line-length = 88
|
|
46
|
+
indent-width = 4
|
|
47
|
+
target-version = "py312"
|
|
48
|
+
|
|
49
|
+
[tool.ruff.lint]
|
|
50
|
+
select = [
|
|
51
|
+
"E4",
|
|
52
|
+
"E7",
|
|
53
|
+
"E9",
|
|
54
|
+
"F",
|
|
55
|
+
]
|
|
56
|
+
ignore = ["F821"]
|
|
57
|
+
fixable = [ "ALL" ]
|
|
58
|
+
unfixable = []
|
|
59
|
+
|
|
60
|
+
[tool.ruff.format]
|
|
61
|
+
quote-style = "double"
|
|
62
|
+
indent-style = "space"
|
|
63
|
+
line-ending = "auto"
|
|
64
|
+
docstring-code-format = false
|
|
65
|
+
skip-magic-trailing-comma = true
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: python-terminusgps
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Provides abstractions/utilities for working with Wialon and Authorize.NET APIs.
|
|
5
|
+
Author-email: Blake Nall <blake@terminusgps.com>
|
|
6
|
+
Classifier: Programming Language :: Python :: 3
|
|
7
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
8
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
|
|
11
|
+
Requires-Python: >=3.12
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
Requires-Dist: argparse>=1.4.0
|
|
14
|
+
Requires-Dist: authorizenet>=1.1.5
|
|
15
|
+
Requires-Dist: python-wialon>=1.2.4
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
README.md
|
|
2
|
+
pyproject.toml
|
|
3
|
+
python_terminusgps.egg-info/PKG-INFO
|
|
4
|
+
python_terminusgps.egg-info/SOURCES.txt
|
|
5
|
+
python_terminusgps.egg-info/dependency_links.txt
|
|
6
|
+
python_terminusgps.egg-info/requires.txt
|
|
7
|
+
python_terminusgps.egg-info/top_level.txt
|
|
8
|
+
terminusgps/__init__.py
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
terminusgps
|
|
File without changes
|