xovis-sdk 0.0.1__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.
- xovis_sdk-0.0.1/PKG-INFO +17 -0
- xovis_sdk-0.0.1/setup.cfg +4 -0
- xovis_sdk-0.0.1/setup.py +17 -0
- xovis_sdk-0.0.1/xovis_sdk/__init__.py +0 -0
- xovis_sdk-0.0.1/xovis_sdk.egg-info/PKG-INFO +17 -0
- xovis_sdk-0.0.1/xovis_sdk.egg-info/SOURCES.txt +6 -0
- xovis_sdk-0.0.1/xovis_sdk.egg-info/dependency_links.txt +1 -0
- xovis_sdk-0.0.1/xovis_sdk.egg-info/top_level.txt +1 -0
xovis_sdk-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: xovis-sdk
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Unofficial community SDK for Xovis Hardware and HUB
|
|
5
|
+
Home-page: https://github.com/xovis-sdk-team/xovis-sdk
|
|
6
|
+
Author: Xovis Open SDK Team
|
|
7
|
+
Author-email: xovis.sdk@proton.me
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Python: >=3.8
|
|
12
|
+
Dynamic: author
|
|
13
|
+
Dynamic: author-email
|
|
14
|
+
Dynamic: classifier
|
|
15
|
+
Dynamic: home-page
|
|
16
|
+
Dynamic: requires-python
|
|
17
|
+
Dynamic: summary
|
xovis_sdk-0.0.1/setup.py
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
setup(
|
|
4
|
+
name="xovis-sdk",
|
|
5
|
+
version="0.0.1",
|
|
6
|
+
description="Unofficial community SDK for Xovis Hardware and HUB",
|
|
7
|
+
author="Xovis Open SDK Team",
|
|
8
|
+
author_email="xovis.sdk@proton.me",
|
|
9
|
+
url="https://github.com/xovis-sdk-team/xovis-sdk",
|
|
10
|
+
packages=find_packages(),
|
|
11
|
+
classifiers=[
|
|
12
|
+
"Programming Language :: Python :: 3",
|
|
13
|
+
"License :: OSI Approved :: MIT License",
|
|
14
|
+
"Operating System :: OS Independent",
|
|
15
|
+
],
|
|
16
|
+
python_requires='>=3.8',
|
|
17
|
+
)
|
|
File without changes
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: xovis-sdk
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Unofficial community SDK for Xovis Hardware and HUB
|
|
5
|
+
Home-page: https://github.com/xovis-sdk-team/xovis-sdk
|
|
6
|
+
Author: Xovis Open SDK Team
|
|
7
|
+
Author-email: xovis.sdk@proton.me
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Python: >=3.8
|
|
12
|
+
Dynamic: author
|
|
13
|
+
Dynamic: author-email
|
|
14
|
+
Dynamic: classifier
|
|
15
|
+
Dynamic: home-page
|
|
16
|
+
Dynamic: requires-python
|
|
17
|
+
Dynamic: summary
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
xovis_sdk
|