Skip to content

Commit b889219

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

1 file changed

Lines changed: 46 additions & 28 deletions

File tree

README.md

Lines changed: 46 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
# ZPE-Music
22

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

85
Installable package: `python3.11 -m pip install zpe-music`.
96
Current release: `0.1.0` on [PyPI](https://pypi.org/project/zpe-music/).
@@ -13,31 +10,9 @@ Source: [Zer0pa/ZPE-Music](https://github.com/Zer0pa/ZPE-Music/).
1310
python3.11 -m pip install zpe-music
1411
```
1512

16-
Import smoke:
17-
18-
```bash
19-
python3.11 - <<'PY'
20-
import importlib.metadata as md
21-
import zpe_music
22-
23-
print("zpe-music", md.version("zpe-music"))
24-
PY
25-
```
26-
27-
Install success only proves package acquisition/import. Product scope, stale PyPI state, platform limits, and blockers remain in the front-door sections below.
28-
- PyPI copy is stale or pending refresh; install success is not product readiness.
29-
<!-- INSTALL-DX:END -->
30-
31-
#### Quick Start
13+
For full install, smoke, source, and developer commands, [click here](#install-developer-commands-detailed).
3214

33-
```bash
34-
python3 -m venv .venv
35-
. .venv/bin/activate
36-
python -m pip install --upgrade pip
37-
python -m pip install -e '.[dev]'
38-
python validation/run_release_verification.py
39-
python -m pytest -q tests/test_music_authority_roundtrip.py tests/test_music_expression_authority_roundtrip.py tests/test_music_authority_guardrails.py
40-
```
15+
---
4116

4217
<table width="100%">
4318
<tr>
@@ -310,3 +285,46 @@ python -m pytest -q tests/test_music_authority_roundtrip.py tests/test_music_exp
310285
</td>
311286
</tr>
312287
</table>
288+
289+
---
290+
291+
<a id="install-developer-commands-detailed"></a>
292+
293+
## Install / Developer Commands Detailed
294+
295+
<!-- INSTALL-DX:START -->
296+
#### Package Install
297+
298+
Installable package: `python3.11 -m pip install zpe-music`.
299+
Current release: `0.1.0` on [PyPI](https://pypi.org/project/zpe-music/).
300+
Source: [Zer0pa/ZPE-Music](https://github.com/Zer0pa/ZPE-Music/).
301+
302+
```bash
303+
python3.11 -m pip install zpe-music
304+
```
305+
306+
Import smoke:
307+
308+
```bash
309+
python3.11 - <<'PY'
310+
import importlib.metadata as md
311+
import zpe_music
312+
313+
print("zpe-music", md.version("zpe-music"))
314+
PY
315+
```
316+
317+
Install success only proves package acquisition/import. Product scope, stale PyPI state, platform limits, and blockers remain in the front-door sections below.
318+
- PyPI copy is stale or pending refresh; install success is not product readiness.
319+
<!-- INSTALL-DX:END -->
320+
321+
#### Quick Start
322+
323+
```bash
324+
python3 -m venv .venv
325+
. .venv/bin/activate
326+
python -m pip install --upgrade pip
327+
python -m pip install -e '.[dev]'
328+
python validation/run_release_verification.py
329+
python -m pytest -q tests/test_music_authority_roundtrip.py tests/test_music_expression_authority_roundtrip.py tests/test_music_authority_guardrails.py
330+
```

0 commit comments

Comments
 (0)