altitude-sdk 0.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.
@@ -0,0 +1,26 @@
1
+ Metadata-Version: 2.4
2
+ Name: altitude-sdk
3
+ Version: 0.0.0
4
+ Summary: Placeholder — name reservation for the Geotab Altitude Python SDK.
5
+ Project-URL: Homepage, https://www.geotab.com
6
+ Author: Geotab
7
+ Maintainer-email: Geotab - Altitude <sanyamgupta@geotab.com>
8
+ License: Proprietary
9
+ Keywords: altitude,api,geotab,sdk,telematics
10
+ Classifier: Development Status :: 1 - Planning
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: License :: Other/Proprietary License
13
+ Classifier: Operating System :: OS Independent
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.10
16
+ Requires-Python: >=3.10
17
+ Description-Content-Type: text/markdown
18
+
19
+ # altitude-sdk
20
+
21
+ This name is a reserved placeholder for the forthcoming **Geotab Altitude Python SDK**.
22
+
23
+ There is no usable functionality in this release (`0.0.0`). A real client SDK for the
24
+ Geotab Altitude APIs will be published under this name in a future version.
25
+
26
+ For more about Geotab, see https://www.geotab.com.
@@ -0,0 +1,8 @@
1
+ # altitude-sdk
2
+
3
+ This name is a reserved placeholder for the forthcoming **Geotab Altitude Python SDK**.
4
+
5
+ There is no usable functionality in this release (`0.0.0`). A real client SDK for the
6
+ Geotab Altitude APIs will be published under this name in a future version.
7
+
8
+ For more about Geotab, see https://www.geotab.com.
@@ -0,0 +1,3 @@
1
+ # Placeholder package reserving the `altitude-sdk` name on PyPI.
2
+ # The real Geotab Altitude Python SDK will replace this in a future release.
3
+ __version__ = "0.0.0"
@@ -0,0 +1,31 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "altitude-sdk"
7
+ version = "0.0.0"
8
+ description = "Placeholder — name reservation for the Geotab Altitude Python SDK."
9
+ readme = "README.md"
10
+ requires-python = ">=3.10"
11
+ license = { text = "Proprietary" }
12
+ authors = [{ name = "Geotab" }]
13
+ maintainers = [{ name = "Geotab - Altitude", email = "sanyamgupta@geotab.com" }]
14
+ keywords = ["geotab", "altitude", "api", "sdk", "telematics"]
15
+ classifiers = [
16
+ "Development Status :: 1 - Planning",
17
+ "Intended Audience :: Developers",
18
+ "License :: Other/Proprietary License",
19
+ "Operating System :: OS Independent",
20
+ "Programming Language :: Python :: 3",
21
+ "Programming Language :: Python :: 3.10",
22
+ ]
23
+
24
+ [project.urls]
25
+ Homepage = "https://www.geotab.com"
26
+
27
+ [tool.hatch.build.targets.wheel]
28
+ packages = ["altitude_sdk"]
29
+
30
+ [tool.hatch.build.targets.sdist]
31
+ include = ["altitude_sdk", "README.md"]