mordred-hermes 0.0.0.dev0__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.
@@ -0,0 +1,20 @@
1
+ __pycache__/
2
+ *.pyc
3
+ *.pyo
4
+ *.egg-info/
5
+ .pytest_cache/
6
+ .mypy_cache/
7
+ .dmypy.json
8
+ .ruff_cache/
9
+ build/
10
+ dist/
11
+ *.egg
12
+ .coverage
13
+ .coverage.*
14
+ coverage.xml
15
+ htmlcov/
16
+ .venv/
17
+
18
+ # Local dev-only keyvault init helper (bypasses safety controls, prints seed).
19
+ # Must never be committed.
20
+ dev_init_keyvault.py
@@ -0,0 +1,34 @@
1
+ Metadata-Version: 2.4
2
+ Name: mordred-hermes
3
+ Version: 0.0.0.dev0
4
+ Summary: Name-reservation placeholder for the Mordred privacy plugin bundle (real release pending)
5
+ Project-URL: Homepage, https://github.com/InternetMaximalism/Mordred-Hermes
6
+ Project-URL: Source, https://github.com/InternetMaximalism/Mordred-Hermes
7
+ Author: InternetMaximalism
8
+ License: MIT
9
+ Requires-Python: >=3.11
10
+ Description-Content-Type: text/markdown
11
+
12
+ # mordred-hermes — name reservation stub
13
+
14
+ This directory builds an **intentionally empty `0.0.0.dev0` package**.
15
+
16
+ It is **not** the real Mordred privacy plugin bundle. Its only purpose is
17
+ to claim the `mordred-hermes` name on TestPyPI and PyPI *before* the
18
+ public documentation launch, so a third party cannot squat the name and
19
+ ship a malicious package (Mordred `TODO.md` §0.5 L70, milestone "M7").
20
+
21
+ The real package — the sibling [`mordred-hermes/`](../../) project,
22
+ version `0.1.0a0` and up — is published later. PEP 440 orders
23
+ `0.0.0.dev0 < 0.1.0a0`, so this stub never blocks the real release.
24
+ `mordred-hermes/tests/test_packaging_versions.py` enforces that ordering.
25
+
26
+ ## Build & publish
27
+
28
+ The publish path is `.github/workflows/release.yml`:
29
+
30
+ - `mode=reserve` — builds and uploads **this stub** (run once, TestPyPI then PyPI).
31
+ - `mode=release` — builds and uploads the **real** `mordred-hermes/` package.
32
+
33
+ See `docs/dev/CI.md` § `release.yml` for the operator runbook
34
+ (PyPI Trusted Publishing / pending-publisher setup).
@@ -0,0 +1,23 @@
1
+ # mordred-hermes — name reservation stub
2
+
3
+ This directory builds an **intentionally empty `0.0.0.dev0` package**.
4
+
5
+ It is **not** the real Mordred privacy plugin bundle. Its only purpose is
6
+ to claim the `mordred-hermes` name on TestPyPI and PyPI *before* the
7
+ public documentation launch, so a third party cannot squat the name and
8
+ ship a malicious package (Mordred `TODO.md` §0.5 L70, milestone "M7").
9
+
10
+ The real package — the sibling [`mordred-hermes/`](../../) project,
11
+ version `0.1.0a0` and up — is published later. PEP 440 orders
12
+ `0.0.0.dev0 < 0.1.0a0`, so this stub never blocks the real release.
13
+ `mordred-hermes/tests/test_packaging_versions.py` enforces that ordering.
14
+
15
+ ## Build & publish
16
+
17
+ The publish path is `.github/workflows/release.yml`:
18
+
19
+ - `mode=reserve` — builds and uploads **this stub** (run once, TestPyPI then PyPI).
20
+ - `mode=release` — builds and uploads the **real** `mordred-hermes/` package.
21
+
22
+ See `docs/dev/CI.md` § `release.yml` for the operator runbook
23
+ (PyPI Trusted Publishing / pending-publisher setup).
@@ -0,0 +1,35 @@
1
+ # M7 — PyPI name-reservation stub (TODO §0.5 L70).
2
+ #
3
+ # This is NOT the real Mordred plugin bundle. It is an intentionally
4
+ # empty `0.0.0.dev0` distribution whose only job is to claim the
5
+ # `mordred-hermes` name on TestPyPI/PyPI *before* the public docs
6
+ # launch, preventing name-squat / supply-chain attacks.
7
+ #
8
+ # Build + upload happen via `.github/workflows/release.yml` in
9
+ # `mode=reserve` (or a manual `twine upload`). The real package — the
10
+ # sibling `mordred-hermes/pyproject.toml`, version `0.1.0a0` — is
11
+ # published later in `mode=release`. PEP 440 guarantees
12
+ # `0.0.0.dev0 < 0.1.0a0`, so this stub never blocks the real release;
13
+ # `tests/test_packaging_versions.py` pins that invariant.
14
+ [build-system]
15
+ requires = ["hatchling>=1.18"]
16
+ build-backend = "hatchling.build"
17
+
18
+ [project]
19
+ name = "mordred-hermes"
20
+ version = "0.0.0.dev0"
21
+ description = "Name-reservation placeholder for the Mordred privacy plugin bundle (real release pending)"
22
+ readme = "README.md"
23
+ requires-python = ">=3.11"
24
+ authors = [{ name = "InternetMaximalism" }]
25
+ license = { text = "MIT" }
26
+
27
+ [project.urls]
28
+ Homepage = "https://github.com/InternetMaximalism/Mordred-Hermes"
29
+ Source = "https://github.com/InternetMaximalism/Mordred-Hermes"
30
+
31
+ [tool.hatch.build.targets.wheel]
32
+ packages = ["src/mordred_hermes"]
33
+
34
+ [tool.hatch.build.targets.sdist]
35
+ include = ["/src", "/README.md", "/pyproject.toml"]
@@ -0,0 +1,15 @@
1
+ """Name-reservation placeholder for the ``mordred-hermes`` distribution.
2
+
3
+ This is **not** the real Mordred plugin bundle. It is an intentionally
4
+ empty ``0.0.0.dev0`` stub uploaded to TestPyPI/PyPI to reserve the
5
+ project name before the public docs launch, preventing name-squat /
6
+ supply-chain attacks (Mordred TODO §0.5 L70, "M7").
7
+
8
+ The real release ships as ``0.1.0a0`` and up via
9
+ ``.github/workflows/release.yml`` (mode ``release``). Until then, do not
10
+ depend on this package — it provides no functionality.
11
+
12
+ See https://github.com/InternetMaximalism/Mordred-Hermes
13
+ """
14
+
15
+ __version__ = "0.0.0.dev0"