wedge-ai 0.2.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.
- wedge_ai-0.2.0/PKG-INFO +24 -0
- wedge_ai-0.2.0/README.md +16 -0
- wedge_ai-0.2.0/pyproject.toml +18 -0
- wedge_ai-0.2.0/setup.cfg +4 -0
- wedge_ai-0.2.0/wedge_ai.egg-info/PKG-INFO +24 -0
- wedge_ai-0.2.0/wedge_ai.egg-info/SOURCES.txt +7 -0
- wedge_ai-0.2.0/wedge_ai.egg-info/dependency_links.txt +1 -0
- wedge_ai-0.2.0/wedge_ai.egg-info/requires.txt +1 -0
- wedge_ai-0.2.0/wedge_ai.egg-info/top_level.txt +1 -0
wedge_ai-0.2.0/PKG-INFO
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: wedge-ai
|
|
3
|
+
Version: 0.2.0
|
|
4
|
+
Summary: Compatibility installer for the Wedge Health Python SDK
|
|
5
|
+
Requires-Python: >=3.11
|
|
6
|
+
Description-Content-Type: text/markdown
|
|
7
|
+
Requires-Dist: wedge-health==0.2.0
|
|
8
|
+
|
|
9
|
+
# wedge-ai
|
|
10
|
+
|
|
11
|
+
Compatibility installer for the canonical `wedge-health` distribution.
|
|
12
|
+
|
|
13
|
+
```console
|
|
14
|
+
python -m pip install wedge-ai
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
Use the canonical import regardless of which distribution name was installed:
|
|
18
|
+
|
|
19
|
+
```python
|
|
20
|
+
from wedge import Wedge
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
This compatibility distribution contains no Python modules. Its matching
|
|
24
|
+
release depends exactly on `wedge-health`, which owns the `wedge` package.
|
wedge_ai-0.2.0/README.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# wedge-ai
|
|
2
|
+
|
|
3
|
+
Compatibility installer for the canonical `wedge-health` distribution.
|
|
4
|
+
|
|
5
|
+
```console
|
|
6
|
+
python -m pip install wedge-ai
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
Use the canonical import regardless of which distribution name was installed:
|
|
10
|
+
|
|
11
|
+
```python
|
|
12
|
+
from wedge import Wedge
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
This compatibility distribution contains no Python modules. Its matching
|
|
16
|
+
release depends exactly on `wedge-health`, which owns the `wedge` package.
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=69,<81"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "wedge-ai"
|
|
7
|
+
version = "0.2.0"
|
|
8
|
+
description = "Compatibility installer for the Wedge Health Python SDK"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.11"
|
|
11
|
+
dependencies = [
|
|
12
|
+
"wedge-health==0.2.0",
|
|
13
|
+
]
|
|
14
|
+
|
|
15
|
+
# This distribution intentionally installs no import packages. The canonical
|
|
16
|
+
# wedge-health distribution is the only owner of the wedge module.
|
|
17
|
+
[tool.setuptools]
|
|
18
|
+
packages = []
|
wedge_ai-0.2.0/setup.cfg
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: wedge-ai
|
|
3
|
+
Version: 0.2.0
|
|
4
|
+
Summary: Compatibility installer for the Wedge Health Python SDK
|
|
5
|
+
Requires-Python: >=3.11
|
|
6
|
+
Description-Content-Type: text/markdown
|
|
7
|
+
Requires-Dist: wedge-health==0.2.0
|
|
8
|
+
|
|
9
|
+
# wedge-ai
|
|
10
|
+
|
|
11
|
+
Compatibility installer for the canonical `wedge-health` distribution.
|
|
12
|
+
|
|
13
|
+
```console
|
|
14
|
+
python -m pip install wedge-ai
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
Use the canonical import regardless of which distribution name was installed:
|
|
18
|
+
|
|
19
|
+
```python
|
|
20
|
+
from wedge import Wedge
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
This compatibility distribution contains no Python modules. Its matching
|
|
24
|
+
release depends exactly on `wedge-health`, which owns the `wedge` package.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
wedge-health==0.2.0
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|