bspe 0.1.0__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 (99) hide show
  1. bspe-0.1.0/.gitignore +19 -0
  2. bspe-0.1.0/DESIGN.md +565 -0
  3. bspe-0.1.0/LICENSE +21 -0
  4. bspe-0.1.0/PKG-INFO +570 -0
  5. bspe-0.1.0/README.md +542 -0
  6. bspe-0.1.0/pyproject.toml +127 -0
  7. bspe-0.1.0/src/bspe/__init__.py +212 -0
  8. bspe-0.1.0/src/bspe/_vmm_serialization_common.py +176 -0
  9. bspe-0.1.0/src/bspe/_vmm_serialization_csv.py +222 -0
  10. bspe-0.1.0/src/bspe/analysis.py +130 -0
  11. bspe-0.1.0/src/bspe/batch_parsing.py +278 -0
  12. bspe-0.1.0/src/bspe/constants.py +9 -0
  13. bspe-0.1.0/src/bspe/domain.py +209 -0
  14. bspe-0.1.0/src/bspe/errors.py +292 -0
  15. bspe-0.1.0/src/bspe/filtering.py +73 -0
  16. bspe-0.1.0/src/bspe/information.py +37 -0
  17. bspe-0.1.0/src/bspe/markov_batch_serialization.py +143 -0
  18. bspe-0.1.0/src/bspe/markov_csv.py +52 -0
  19. bspe-0.1.0/src/bspe/markov_information.py +73 -0
  20. bspe-0.1.0/src/bspe/markov_serialization.py +239 -0
  21. bspe-0.1.0/src/bspe/markov_types.py +146 -0
  22. bspe-0.1.0/src/bspe/methods/__init__.py +23 -0
  23. bspe-0.1.0/src/bspe/methods/hmm.py +41 -0
  24. bspe-0.1.0/src/bspe/methods/markov.py +254 -0
  25. bspe-0.1.0/src/bspe/methods/shannon.py +132 -0
  26. bspe-0.1.0/src/bspe/methods/vmm.py +253 -0
  27. bspe-0.1.0/src/bspe/parsing.py +88 -0
  28. bspe-0.1.0/src/bspe/presentation.py +108 -0
  29. bspe-0.1.0/src/bspe/py.typed +0 -0
  30. bspe-0.1.0/src/bspe/records.py +68 -0
  31. bspe-0.1.0/src/bspe/schemas.py +73 -0
  32. bspe-0.1.0/src/bspe/serialization.py +189 -0
  33. bspe-0.1.0/src/bspe/stimulus_analysis.py +51 -0
  34. bspe-0.1.0/src/bspe/stimulus_generation.py +31 -0
  35. bspe-0.1.0/src/bspe/stimulus_matching.py +140 -0
  36. bspe-0.1.0/src/bspe/stimulus_metadata.py +44 -0
  37. bspe-0.1.0/src/bspe/stimulus_metrics.py +39 -0
  38. bspe-0.1.0/src/bspe/stimulus_search.py +211 -0
  39. bspe-0.1.0/src/bspe/stimulus_search_csv.py +211 -0
  40. bspe-0.1.0/src/bspe/stimulus_search_json.py +245 -0
  41. bspe-0.1.0/src/bspe/stimulus_search_results.py +189 -0
  42. bspe-0.1.0/src/bspe/stimulus_search_types.py +185 -0
  43. bspe-0.1.0/src/bspe/stimulus_targets.py +277 -0
  44. bspe-0.1.0/src/bspe/ui/__init__.py +9 -0
  45. bspe-0.1.0/src/bspe/ui/chart.py +229 -0
  46. bspe-0.1.0/src/bspe/ui/comparison.py +159 -0
  47. bspe-0.1.0/src/bspe/ui/form.py +38 -0
  48. bspe-0.1.0/src/bspe/ui/help_text.py +319 -0
  49. bspe-0.1.0/src/bspe/ui/hmm_session.py +94 -0
  50. bspe-0.1.0/src/bspe/ui/inputs.py +230 -0
  51. bspe-0.1.0/src/bspe/ui/markov_model_view.py +237 -0
  52. bspe-0.1.0/src/bspe/ui/markov_results.py +150 -0
  53. bspe-0.1.0/src/bspe/ui/markov_state.py +82 -0
  54. bspe-0.1.0/src/bspe/ui/markov_view.py +37 -0
  55. bspe-0.1.0/src/bspe/ui/method_controls.py +220 -0
  56. bspe-0.1.0/src/bspe/ui/model_inputs.py +106 -0
  57. bspe-0.1.0/src/bspe/ui/preset_inputs.py +101 -0
  58. bspe-0.1.0/src/bspe/ui/results.py +132 -0
  59. bspe-0.1.0/src/bspe/ui/results_view.py +241 -0
  60. bspe-0.1.0/src/bspe/ui/session.py +160 -0
  61. bspe-0.1.0/src/bspe/ui/setup.py +51 -0
  62. bspe-0.1.0/src/bspe/ui/shannon_results.py +151 -0
  63. bspe-0.1.0/src/bspe/ui/sidebar.py +105 -0
  64. bspe-0.1.0/src/bspe/ui/state.py +234 -0
  65. bspe-0.1.0/src/bspe/ui/stimulus_constraint_controls.py +186 -0
  66. bspe-0.1.0/src/bspe/ui/stimulus_controls.py +117 -0
  67. bspe-0.1.0/src/bspe/ui/stimulus_derived.py +284 -0
  68. bspe-0.1.0/src/bspe/ui/stimulus_metadata_controls.py +29 -0
  69. bspe-0.1.0/src/bspe/ui/stimulus_preference_controls.py +83 -0
  70. bspe-0.1.0/src/bspe/ui/stimulus_results.py +212 -0
  71. bspe-0.1.0/src/bspe/ui/stimulus_session.py +208 -0
  72. bspe-0.1.0/src/bspe/ui/stimulus_view.py +258 -0
  73. bspe-0.1.0/src/bspe/ui/stimulus_vmm_controls.py +84 -0
  74. bspe-0.1.0/src/bspe/ui/summary.py +273 -0
  75. bspe-0.1.0/src/bspe/ui/text.py +6 -0
  76. bspe-0.1.0/src/bspe/ui/tokens.py +30 -0
  77. bspe-0.1.0/src/bspe/ui/vmm_artifacts.py +187 -0
  78. bspe-0.1.0/src/bspe/ui/vmm_chart.py +139 -0
  79. bspe-0.1.0/src/bspe/ui/vmm_evidence.py +111 -0
  80. bspe-0.1.0/src/bspe/ui/vmm_results.py +270 -0
  81. bspe-0.1.0/src/bspe/ui/vmm_view.py +296 -0
  82. bspe-0.1.0/src/bspe/ui/workbench_state.py +281 -0
  83. bspe-0.1.0/src/bspe/ui/workspace_agreement.py +163 -0
  84. bspe-0.1.0/src/bspe/ui/workspace_charts.py +154 -0
  85. bspe-0.1.0/src/bspe/ui/workspace_components.py +102 -0
  86. bspe-0.1.0/src/bspe/ui/workspace_current.py +97 -0
  87. bspe-0.1.0/src/bspe/ui/workspace_exports.py +196 -0
  88. bspe-0.1.0/src/bspe/ui/workspace_method_common.py +51 -0
  89. bspe-0.1.0/src/bspe/ui/workspace_method_context.py +20 -0
  90. bspe-0.1.0/src/bspe/ui/workspace_method_renderers.py +197 -0
  91. bspe-0.1.0/src/bspe/ui/workspace_metrics.py +295 -0
  92. bspe-0.1.0/src/bspe/ui/workspace_mode.py +98 -0
  93. bspe-0.1.0/src/bspe/ui/workspace_renderers.py +157 -0
  94. bspe-0.1.0/src/bspe/ui/workspace_secondary_renderers.py +115 -0
  95. bspe-0.1.0/src/bspe/ui/workspace_selection.py +108 -0
  96. bspe-0.1.0/src/bspe/ui/workspace_session.py +86 -0
  97. bspe-0.1.0/src/bspe/vmm_serialization.py +266 -0
  98. bspe-0.1.0/src/bspe/vmm_types.py +156 -0
  99. bspe-0.1.0/src/bspe/workbench.py +153 -0
bspe-0.1.0/.gitignore ADDED
@@ -0,0 +1,19 @@
1
+ .venv/
2
+ .codegraph
3
+ .omo/
4
+ .playwright-mcp/
5
+ __pycache__/
6
+ .pytest_cache/
7
+ .ruff_cache/
8
+ .coverage
9
+ htmlcov/
10
+ build/
11
+ dist/
12
+ *.egg-info/
13
+
14
+ # Local editor and generated review artifacts
15
+ /.vscode/
16
+ /architecture_snapshot.txt
17
+ /project_snapshot.txt
18
+ /workbench-final-*.png
19
+ .aider*