You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+53-33Lines changed: 53 additions & 33 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,6 @@
1
1
# ZPE-Mental
2
2
3
-
## Install / Developer Commands
4
-
5
-
<!-- INSTALL-DX:START -->
6
-
#### Package Install
3
+
## Package Install
7
4
8
5
PyPI package: `zpe-mental==0.1.0` on [PyPI](https://pypi.org/project/zpe-mental/).
9
6
Current published artifacts are Python 3.11 Linux x86_64 manylinux wheels only; macOS/Windows installs and source-build installs require future sdists or additional platform wheels. Package availability does not imply product or clinical readiness.
@@ -15,36 +12,9 @@ Supported PyPI artifact install, on Python 3.11 Linux x86_64:
15
12
python3.11 -m pip install zpe-mental
16
13
```
17
14
18
-
Import smoke after a supported-platform install:
19
-
20
-
```bash
21
-
python3.11 - <<'PY'
22
-
import importlib.metadata as md
23
-
import zpe_mental
24
-
25
-
print("zpe-mental", md.version("zpe-mental"))
26
-
PY
27
-
```
28
-
29
-
Install success only proves package acquisition/import. Product scope, stale PyPI state, platform limits, and blockers remain in the front-door sections below.
30
-
- Current PyPI surface is Linux x86_64 Python 3.11 wheel-only with no sdist; use Python 3.11 Linux x86_64 for PyPI smoke checks.
31
-
<!-- INSTALL-DX:END -->
32
-
33
-
#### Quick Start
15
+
For full install, smoke, source, and developer commands, [click here](#install-developer-commands-detailed).
34
16
35
-
```bash
36
-
python3 - <<'PY'
37
-
import sys
38
-
raise SystemExit(0 if sys.version_info >= (3, 11) else "Python 3.11+ is required")
PyPI package: `zpe-mental==0.1.0` on [PyPI](https://pypi.org/project/zpe-mental/).
300
+
Current published artifacts are Python 3.11 Linux x86_64 manylinux wheels only; macOS/Windows installs and source-build installs require future sdists or additional platform wheels. Package availability does not imply product or clinical readiness.
Supported PyPI artifact install, on Python 3.11 Linux x86_64:
304
+
305
+
```bash
306
+
python3.11 -m pip install zpe-mental
307
+
```
308
+
309
+
Import smoke after a supported-platform install:
310
+
311
+
```bash
312
+
python3.11 - <<'PY'
313
+
import importlib.metadata as md
314
+
import zpe_mental
315
+
316
+
print("zpe-mental", md.version("zpe-mental"))
317
+
PY
318
+
```
319
+
320
+
Install success only proves package acquisition/import. Product scope, stale PyPI state, platform limits, and blockers remain in the front-door sections below.
321
+
- Current PyPI surface is Linux x86_64 Python 3.11 wheel-only with no sdist; use Python 3.11 Linux x86_64 for PyPI smoke checks.
322
+
<!-- INSTALL-DX:END -->
323
+
324
+
#### Quick Start
325
+
326
+
```bash
327
+
python3 - <<'PY'
328
+
import sys
329
+
raise SystemExit(0 if sys.version_info >= (3, 11) else "Python 3.11+ is required")
0 commit comments