Skip to content

Commit 4704947

Browse files
Move detailed install commands to README end
README-only front-door install detail relocation.
1 parent d5a531f commit 4704947

1 file changed

Lines changed: 53 additions & 33 deletions

File tree

README.md

Lines changed: 53 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
# ZPE-Mental
22

3-
## Install / Developer Commands
4-
5-
<!-- INSTALL-DX:START -->
6-
#### Package Install
3+
## Package Install
74

85
PyPI package: `zpe-mental==0.1.0` on [PyPI](https://pypi.org/project/zpe-mental/).
96
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:
1512
python3.11 -m pip install zpe-mental
1613
```
1714

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).
3416

35-
```bash
36-
python3 - <<'PY'
37-
import sys
38-
raise SystemExit(0 if sys.version_info >= (3, 11) else "Python 3.11+ is required")
39-
PY
40-
cargo --version
41-
python3 -m venv .venv
42-
. .venv/bin/activate
43-
python -m pip install --upgrade pip
44-
python -m pip install ".[test]"
45-
python scripts/validate_release.py --output proofs/artifacts/mental_release_matrix.json
46-
pytest tests -q --junitxml validation/results/pytest.xml
47-
```
17+
---
4818

4919
<table width="100%">
5020
<tr>
@@ -316,3 +286,53 @@ pytest tests -q --junitxml validation/results/pytest.xml
316286
</td>
317287
</tr>
318288
</table>
289+
290+
---
291+
292+
<a id="install-developer-commands-detailed"></a>
293+
294+
## Install / Developer Commands Detailed
295+
296+
<!-- INSTALL-DX:START -->
297+
#### Package Install
298+
299+
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.
301+
Source: [Zer0pa/ZPE-Mental](https://github.com/Zer0pa/ZPE-Mental/).
302+
303+
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")
330+
PY
331+
cargo --version
332+
python3 -m venv .venv
333+
. .venv/bin/activate
334+
python -m pip install --upgrade pip
335+
python -m pip install ".[test]"
336+
python scripts/validate_release.py --output proofs/artifacts/mental_release_matrix.json
337+
pytest tests -q --junitxml validation/results/pytest.xml
338+
```

0 commit comments

Comments
 (0)