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.
- bspe-0.1.0/.gitignore +19 -0
- bspe-0.1.0/DESIGN.md +565 -0
- bspe-0.1.0/LICENSE +21 -0
- bspe-0.1.0/PKG-INFO +570 -0
- bspe-0.1.0/README.md +542 -0
- bspe-0.1.0/pyproject.toml +127 -0
- bspe-0.1.0/src/bspe/__init__.py +212 -0
- bspe-0.1.0/src/bspe/_vmm_serialization_common.py +176 -0
- bspe-0.1.0/src/bspe/_vmm_serialization_csv.py +222 -0
- bspe-0.1.0/src/bspe/analysis.py +130 -0
- bspe-0.1.0/src/bspe/batch_parsing.py +278 -0
- bspe-0.1.0/src/bspe/constants.py +9 -0
- bspe-0.1.0/src/bspe/domain.py +209 -0
- bspe-0.1.0/src/bspe/errors.py +292 -0
- bspe-0.1.0/src/bspe/filtering.py +73 -0
- bspe-0.1.0/src/bspe/information.py +37 -0
- bspe-0.1.0/src/bspe/markov_batch_serialization.py +143 -0
- bspe-0.1.0/src/bspe/markov_csv.py +52 -0
- bspe-0.1.0/src/bspe/markov_information.py +73 -0
- bspe-0.1.0/src/bspe/markov_serialization.py +239 -0
- bspe-0.1.0/src/bspe/markov_types.py +146 -0
- bspe-0.1.0/src/bspe/methods/__init__.py +23 -0
- bspe-0.1.0/src/bspe/methods/hmm.py +41 -0
- bspe-0.1.0/src/bspe/methods/markov.py +254 -0
- bspe-0.1.0/src/bspe/methods/shannon.py +132 -0
- bspe-0.1.0/src/bspe/methods/vmm.py +253 -0
- bspe-0.1.0/src/bspe/parsing.py +88 -0
- bspe-0.1.0/src/bspe/presentation.py +108 -0
- bspe-0.1.0/src/bspe/py.typed +0 -0
- bspe-0.1.0/src/bspe/records.py +68 -0
- bspe-0.1.0/src/bspe/schemas.py +73 -0
- bspe-0.1.0/src/bspe/serialization.py +189 -0
- bspe-0.1.0/src/bspe/stimulus_analysis.py +51 -0
- bspe-0.1.0/src/bspe/stimulus_generation.py +31 -0
- bspe-0.1.0/src/bspe/stimulus_matching.py +140 -0
- bspe-0.1.0/src/bspe/stimulus_metadata.py +44 -0
- bspe-0.1.0/src/bspe/stimulus_metrics.py +39 -0
- bspe-0.1.0/src/bspe/stimulus_search.py +211 -0
- bspe-0.1.0/src/bspe/stimulus_search_csv.py +211 -0
- bspe-0.1.0/src/bspe/stimulus_search_json.py +245 -0
- bspe-0.1.0/src/bspe/stimulus_search_results.py +189 -0
- bspe-0.1.0/src/bspe/stimulus_search_types.py +185 -0
- bspe-0.1.0/src/bspe/stimulus_targets.py +277 -0
- bspe-0.1.0/src/bspe/ui/__init__.py +9 -0
- bspe-0.1.0/src/bspe/ui/chart.py +229 -0
- bspe-0.1.0/src/bspe/ui/comparison.py +159 -0
- bspe-0.1.0/src/bspe/ui/form.py +38 -0
- bspe-0.1.0/src/bspe/ui/help_text.py +319 -0
- bspe-0.1.0/src/bspe/ui/hmm_session.py +94 -0
- bspe-0.1.0/src/bspe/ui/inputs.py +230 -0
- bspe-0.1.0/src/bspe/ui/markov_model_view.py +237 -0
- bspe-0.1.0/src/bspe/ui/markov_results.py +150 -0
- bspe-0.1.0/src/bspe/ui/markov_state.py +82 -0
- bspe-0.1.0/src/bspe/ui/markov_view.py +37 -0
- bspe-0.1.0/src/bspe/ui/method_controls.py +220 -0
- bspe-0.1.0/src/bspe/ui/model_inputs.py +106 -0
- bspe-0.1.0/src/bspe/ui/preset_inputs.py +101 -0
- bspe-0.1.0/src/bspe/ui/results.py +132 -0
- bspe-0.1.0/src/bspe/ui/results_view.py +241 -0
- bspe-0.1.0/src/bspe/ui/session.py +160 -0
- bspe-0.1.0/src/bspe/ui/setup.py +51 -0
- bspe-0.1.0/src/bspe/ui/shannon_results.py +151 -0
- bspe-0.1.0/src/bspe/ui/sidebar.py +105 -0
- bspe-0.1.0/src/bspe/ui/state.py +234 -0
- bspe-0.1.0/src/bspe/ui/stimulus_constraint_controls.py +186 -0
- bspe-0.1.0/src/bspe/ui/stimulus_controls.py +117 -0
- bspe-0.1.0/src/bspe/ui/stimulus_derived.py +284 -0
- bspe-0.1.0/src/bspe/ui/stimulus_metadata_controls.py +29 -0
- bspe-0.1.0/src/bspe/ui/stimulus_preference_controls.py +83 -0
- bspe-0.1.0/src/bspe/ui/stimulus_results.py +212 -0
- bspe-0.1.0/src/bspe/ui/stimulus_session.py +208 -0
- bspe-0.1.0/src/bspe/ui/stimulus_view.py +258 -0
- bspe-0.1.0/src/bspe/ui/stimulus_vmm_controls.py +84 -0
- bspe-0.1.0/src/bspe/ui/summary.py +273 -0
- bspe-0.1.0/src/bspe/ui/text.py +6 -0
- bspe-0.1.0/src/bspe/ui/tokens.py +30 -0
- bspe-0.1.0/src/bspe/ui/vmm_artifacts.py +187 -0
- bspe-0.1.0/src/bspe/ui/vmm_chart.py +139 -0
- bspe-0.1.0/src/bspe/ui/vmm_evidence.py +111 -0
- bspe-0.1.0/src/bspe/ui/vmm_results.py +270 -0
- bspe-0.1.0/src/bspe/ui/vmm_view.py +296 -0
- bspe-0.1.0/src/bspe/ui/workbench_state.py +281 -0
- bspe-0.1.0/src/bspe/ui/workspace_agreement.py +163 -0
- bspe-0.1.0/src/bspe/ui/workspace_charts.py +154 -0
- bspe-0.1.0/src/bspe/ui/workspace_components.py +102 -0
- bspe-0.1.0/src/bspe/ui/workspace_current.py +97 -0
- bspe-0.1.0/src/bspe/ui/workspace_exports.py +196 -0
- bspe-0.1.0/src/bspe/ui/workspace_method_common.py +51 -0
- bspe-0.1.0/src/bspe/ui/workspace_method_context.py +20 -0
- bspe-0.1.0/src/bspe/ui/workspace_method_renderers.py +197 -0
- bspe-0.1.0/src/bspe/ui/workspace_metrics.py +295 -0
- bspe-0.1.0/src/bspe/ui/workspace_mode.py +98 -0
- bspe-0.1.0/src/bspe/ui/workspace_renderers.py +157 -0
- bspe-0.1.0/src/bspe/ui/workspace_secondary_renderers.py +115 -0
- bspe-0.1.0/src/bspe/ui/workspace_selection.py +108 -0
- bspe-0.1.0/src/bspe/ui/workspace_session.py +86 -0
- bspe-0.1.0/src/bspe/vmm_serialization.py +266 -0
- bspe-0.1.0/src/bspe/vmm_types.py +156 -0
- 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*
|