simple-module-core 0.0.18__tar.gz → 0.0.19__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.
Files changed (49) hide show
  1. {simple_module_core-0.0.18 → simple_module_core-0.0.19}/PKG-INFO +3 -3
  2. {simple_module_core-0.0.18 → simple_module_core-0.0.19}/README.md +2 -2
  3. {simple_module_core-0.0.18 → simple_module_core-0.0.19}/pyproject.toml +1 -1
  4. {simple_module_core-0.0.18 → simple_module_core-0.0.19}/.gitignore +0 -0
  5. {simple_module_core-0.0.18 → simple_module_core-0.0.19}/LICENSE +0 -0
  6. {simple_module_core-0.0.18 → simple_module_core-0.0.19}/simple_module_core/__init__.py +0 -0
  7. {simple_module_core-0.0.18 → simple_module_core-0.0.19}/simple_module_core/__main__.py +0 -0
  8. {simple_module_core-0.0.18 → simple_module_core-0.0.19}/simple_module_core/diagnostics/__init__.py +0 -0
  9. {simple_module_core-0.0.18 → simple_module_core-0.0.19}/simple_module_core/diagnostics/_coupling.py +0 -0
  10. {simple_module_core-0.0.18 → simple_module_core-0.0.19}/simple_module_core/diagnostics/_i18n.py +0 -0
  11. {simple_module_core-0.0.18 → simple_module_core-0.0.19}/simple_module_core/diagnostics/_inertia_api.py +0 -0
  12. {simple_module_core-0.0.18 → simple_module_core-0.0.19}/simple_module_core/diagnostics/_js_workspace.py +0 -0
  13. {simple_module_core-0.0.18 → simple_module_core-0.0.19}/simple_module_core/diagnostics/_migration.py +0 -0
  14. {simple_module_core-0.0.18 → simple_module_core-0.0.19}/simple_module_core/diagnostics/_module.py +0 -0
  15. {simple_module_core-0.0.18 → simple_module_core-0.0.19}/simple_module_core/diagnostics/_pages.py +0 -0
  16. {simple_module_core-0.0.18 → simple_module_core-0.0.19}/simple_module_core/diagnostics/_runner.py +0 -0
  17. {simple_module_core-0.0.18 → simple_module_core-0.0.19}/simple_module_core/diagnostics/_types.py +0 -0
  18. {simple_module_core-0.0.18 → simple_module_core-0.0.19}/simple_module_core/discovery.py +0 -0
  19. {simple_module_core-0.0.18 → simple_module_core-0.0.19}/simple_module_core/dotenv.py +0 -0
  20. {simple_module_core-0.0.18 → simple_module_core-0.0.19}/simple_module_core/environments.py +0 -0
  21. {simple_module_core-0.0.18 → simple_module_core-0.0.19}/simple_module_core/events.py +0 -0
  22. {simple_module_core-0.0.18 → simple_module_core-0.0.19}/simple_module_core/exceptions.py +0 -0
  23. {simple_module_core-0.0.18 → simple_module_core-0.0.19}/simple_module_core/feature_flags.py +0 -0
  24. {simple_module_core-0.0.18 → simple_module_core-0.0.19}/simple_module_core/health.py +0 -0
  25. {simple_module_core-0.0.18 → simple_module_core-0.0.19}/simple_module_core/i18n.py +0 -0
  26. {simple_module_core-0.0.18 → simple_module_core-0.0.19}/simple_module_core/menu.py +0 -0
  27. {simple_module_core-0.0.18 → simple_module_core-0.0.19}/simple_module_core/module.py +0 -0
  28. {simple_module_core-0.0.18 → simple_module_core-0.0.19}/simple_module_core/permissions.py +0 -0
  29. {simple_module_core-0.0.18 → simple_module_core-0.0.19}/simple_module_core/public_routes.py +0 -0
  30. {simple_module_core-0.0.18 → simple_module_core-0.0.19}/simple_module_core/py.typed +0 -0
  31. {simple_module_core-0.0.18 → simple_module_core-0.0.19}/simple_module_core/services.py +0 -0
  32. {simple_module_core-0.0.18 → simple_module_core-0.0.19}/simple_module_core/versioning.py +0 -0
  33. {simple_module_core-0.0.18 → simple_module_core-0.0.19}/tests/test_diagnostics.py +0 -0
  34. {simple_module_core-0.0.18 → simple_module_core-0.0.19}/tests/test_discovery.py +0 -0
  35. {simple_module_core-0.0.18 → simple_module_core-0.0.19}/tests/test_dotenv.py +0 -0
  36. {simple_module_core-0.0.18 → simple_module_core-0.0.19}/tests/test_environments.py +0 -0
  37. {simple_module_core-0.0.18 → simple_module_core-0.0.19}/tests/test_events.py +0 -0
  38. {simple_module_core-0.0.18 → simple_module_core-0.0.19}/tests/test_feature_flags.py +0 -0
  39. {simple_module_core-0.0.18 → simple_module_core-0.0.19}/tests/test_feature_flags_decorator.py +0 -0
  40. {simple_module_core-0.0.18 → simple_module_core-0.0.19}/tests/test_health_registry.py +0 -0
  41. {simple_module_core-0.0.18 → simple_module_core-0.0.19}/tests/test_i18n.py +0 -0
  42. {simple_module_core-0.0.18 → simple_module_core-0.0.19}/tests/test_i18n_diagnostics.py +0 -0
  43. {simple_module_core-0.0.18 → simple_module_core-0.0.19}/tests/test_menu.py +0 -0
  44. {simple_module_core-0.0.18 → simple_module_core-0.0.19}/tests/test_module_base.py +0 -0
  45. {simple_module_core-0.0.18 → simple_module_core-0.0.19}/tests/test_module_diagnostics.py +0 -0
  46. {simple_module_core-0.0.18 → simple_module_core-0.0.19}/tests/test_permissions.py +0 -0
  47. {simple_module_core-0.0.18 → simple_module_core-0.0.19}/tests/test_public_routes.py +0 -0
  48. {simple_module_core-0.0.18 → simple_module_core-0.0.19}/tests/test_services.py +0 -0
  49. {simple_module_core-0.0.18 → simple_module_core-0.0.19}/tests/test_versioning.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: simple_module_core
3
- Version: 0.0.18
3
+ Version: 0.0.19
4
4
  Summary: Module-system primitives for the simple_module framework — ModuleBase, discovery, diagnostics, events
5
5
  Project-URL: Homepage, https://github.com/antosubash/simple_module_python
6
6
  Project-URL: Repository, https://github.com/antosubash/simple_module_python
@@ -33,7 +33,7 @@ Description-Content-Type: text/markdown
33
33
 
34
34
  Module-system primitives for the [simple_module](https://github.com/antosubash/simple_module_python) framework — a modular-monolith for Python/FastAPI where each feature is a plugin package discovered at boot.
35
35
 
36
- This package defines `ModuleBase`, the `ModuleMeta` descriptor, the `discover_modules()` entry-point loader, topological dependency sorting, event bus primitives, and the diagnostic codes (`SM001`–`SM017`) used by `make doctor`.
36
+ This package defines `ModuleBase`, the `ModuleMeta` descriptor, the `discover_modules()` entry-point loader, topological dependency sorting, event bus primitives, and the diagnostic codes (`SM001`–`SM021`) used by `make doctor`.
37
37
 
38
38
  ## Install
39
39
 
@@ -48,7 +48,7 @@ You usually don't install this directly — it's pulled in by `simple_module_hos
48
48
  - `ModuleBase` — the subclass every module extends to opt into lifecycle hooks.
49
49
  - `ModuleMeta` — required `meta = ModuleMeta(name=..., depends_on=...)` attribute on each module.
50
50
  - `discover_modules()` — loads all `[project.entry-points.simple_module]` modules, topologically sorts by `depends_on`.
51
- - Diagnostic registry — `SM001` missing meta, `SM003` orphan page, `SM008` duplicate name, `SM009` framework→plugin coupling violation, and ~ten others.
51
+ - Diagnostic registry — `SM001` missing meta, `SM003` orphan page, `SM008` duplicate name, `SM009` framework→plugin coupling violation, and the rest of the `SM0xx` set through `SM021`.
52
52
  - Tiny event-bus (`pyee`) for decoupled module-to-module communication.
53
53
 
54
54
  ## Usage
@@ -2,7 +2,7 @@
2
2
 
3
3
  Module-system primitives for the [simple_module](https://github.com/antosubash/simple_module_python) framework — a modular-monolith for Python/FastAPI where each feature is a plugin package discovered at boot.
4
4
 
5
- This package defines `ModuleBase`, the `ModuleMeta` descriptor, the `discover_modules()` entry-point loader, topological dependency sorting, event bus primitives, and the diagnostic codes (`SM001`–`SM017`) used by `make doctor`.
5
+ This package defines `ModuleBase`, the `ModuleMeta` descriptor, the `discover_modules()` entry-point loader, topological dependency sorting, event bus primitives, and the diagnostic codes (`SM001`–`SM021`) used by `make doctor`.
6
6
 
7
7
  ## Install
8
8
 
@@ -17,7 +17,7 @@ You usually don't install this directly — it's pulled in by `simple_module_hos
17
17
  - `ModuleBase` — the subclass every module extends to opt into lifecycle hooks.
18
18
  - `ModuleMeta` — required `meta = ModuleMeta(name=..., depends_on=...)` attribute on each module.
19
19
  - `discover_modules()` — loads all `[project.entry-points.simple_module]` modules, topologically sorts by `depends_on`.
20
- - Diagnostic registry — `SM001` missing meta, `SM003` orphan page, `SM008` duplicate name, `SM009` framework→plugin coupling violation, and ~ten others.
20
+ - Diagnostic registry — `SM001` missing meta, `SM003` orphan page, `SM008` duplicate name, `SM009` framework→plugin coupling violation, and the rest of the `SM0xx` set through `SM021`.
21
21
  - Tiny event-bus (`pyee`) for decoupled module-to-module communication.
22
22
 
23
23
  ## Usage
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "simple_module_core"
3
- version = "0.0.18"
3
+ version = "0.0.19"
4
4
  description = "Module-system primitives for the simple_module framework — ModuleBase, discovery, diagnostics, events"
5
5
  readme = "README.md"
6
6
  license = "MIT"