pysurgesdk 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.
- pysurgesdk-0.0.0/PKG-INFO +17 -0
- pysurgesdk-0.0.0/README.md +7 -0
- pysurgesdk-0.0.0/pyproject.toml +18 -0
- pysurgesdk-0.0.0/pysurgesdk.egg-info/PKG-INFO +17 -0
- pysurgesdk-0.0.0/pysurgesdk.egg-info/SOURCES.txt +7 -0
- pysurgesdk-0.0.0/pysurgesdk.egg-info/dependency_links.txt +1 -0
- pysurgesdk-0.0.0/pysurgesdk.egg-info/top_level.txt +1 -0
- pysurgesdk-0.0.0/pysurgesdk.py +19 -0
- pysurgesdk-0.0.0/setup.cfg +4 -0
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pysurgesdk
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Placeholder — reserved for the official Alt-Bionics SurgeSDK Python distribution.
|
|
5
|
+
Author-email: "Alt-Bionics, Inc." <pypi@altbionics.com>
|
|
6
|
+
License: Proprietary — see https://www.altbionics.com
|
|
7
|
+
Project-URL: Homepage, https://www.altbionics.com
|
|
8
|
+
Requires-Python: >=3.8
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# pysurgesdk
|
|
12
|
+
|
|
13
|
+
This PyPI name is reserved by **Alt-Bionics, Inc.** for the forthcoming official Python distribution of the SurgeSDK — the software development kit for the Alt-Bionics Surge robotic hand product line (https://www.altbionics.com).
|
|
14
|
+
|
|
15
|
+
The published package will replace this placeholder once public distribution begins.
|
|
16
|
+
|
|
17
|
+
**For details**, contact: **pypi@altbionics.com**
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# pysurgesdk
|
|
2
|
+
|
|
3
|
+
This PyPI name is reserved by **Alt-Bionics, Inc.** for the forthcoming official Python distribution of the SurgeSDK — the software development kit for the Alt-Bionics Surge robotic hand product line (https://www.altbionics.com).
|
|
4
|
+
|
|
5
|
+
The published package will replace this placeholder once public distribution begins.
|
|
6
|
+
|
|
7
|
+
**For details**, contact: **pypi@altbionics.com**
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "pysurgesdk"
|
|
7
|
+
version = "0.0.0"
|
|
8
|
+
description = "Placeholder — reserved for the official Alt-Bionics SurgeSDK Python distribution."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = { text = "Proprietary — see https://www.altbionics.com" }
|
|
11
|
+
authors = [{ name = "Alt-Bionics, Inc.", email = "pypi@altbionics.com" }]
|
|
12
|
+
requires-python = ">=3.8"
|
|
13
|
+
|
|
14
|
+
[project.urls]
|
|
15
|
+
Homepage = "https://www.altbionics.com"
|
|
16
|
+
|
|
17
|
+
[tool.setuptools]
|
|
18
|
+
py-modules = ["pysurgesdk"]
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pysurgesdk
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Placeholder — reserved for the official Alt-Bionics SurgeSDK Python distribution.
|
|
5
|
+
Author-email: "Alt-Bionics, Inc." <pypi@altbionics.com>
|
|
6
|
+
License: Proprietary — see https://www.altbionics.com
|
|
7
|
+
Project-URL: Homepage, https://www.altbionics.com
|
|
8
|
+
Requires-Python: >=3.8
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# pysurgesdk
|
|
12
|
+
|
|
13
|
+
This PyPI name is reserved by **Alt-Bionics, Inc.** for the forthcoming official Python distribution of the SurgeSDK — the software development kit for the Alt-Bionics Surge robotic hand product line (https://www.altbionics.com).
|
|
14
|
+
|
|
15
|
+
The published package will replace this placeholder once public distribution begins.
|
|
16
|
+
|
|
17
|
+
**For details**, contact: **pypi@altbionics.com**
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
pysurgesdk
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"""Placeholder for the upcoming launch of the Alt-Bionics SurgeSDK.
|
|
2
|
+
|
|
3
|
+
The python SurgeSDK is not yet available on PyPI. If you reached
|
|
4
|
+
this package by ``pip install``, SurgeSDK is not distributed here yet
|
|
5
|
+
— contact ``pypi@altbionics.com`` for details.
|
|
6
|
+
|
|
7
|
+
https://www.altbionics.com
|
|
8
|
+
"""
|
|
9
|
+
import warnings
|
|
10
|
+
|
|
11
|
+
__version__ = "0.0.0"
|
|
12
|
+
|
|
13
|
+
warnings.warn(
|
|
14
|
+
"You've imported a placeholder for the Alt-Bionics SurgeSDK "
|
|
15
|
+
"Python distribution. The SurgeSDK is not yet available on PyPI. "
|
|
16
|
+
"Contact pypi@altbionics.com for details.",
|
|
17
|
+
UserWarning,
|
|
18
|
+
stacklevel=2,
|
|
19
|
+
)
|