scientific-computing-system 1.6.2__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 (243) hide show
  1. scientific_computing_system-1.6.2/.gitignore +239 -0
  2. scientific_computing_system-1.6.2/CHANGELOG.md +1079 -0
  3. scientific_computing_system-1.6.2/CITATION.cff +29 -0
  4. scientific_computing_system-1.6.2/CONTRIBUTING.md +275 -0
  5. scientific_computing_system-1.6.2/LICENSE +21 -0
  6. scientific_computing_system-1.6.2/PKG-INFO +741 -0
  7. scientific_computing_system-1.6.2/README.md +668 -0
  8. scientific_computing_system-1.6.2/SECURITY.md +72 -0
  9. scientific_computing_system-1.6.2/benchmarks/results.json +43 -0
  10. scientific_computing_system-1.6.2/benchmarks/run_benchmarks.py +394 -0
  11. scientific_computing_system-1.6.2/dashboard/app.py +224 -0
  12. scientific_computing_system-1.6.2/docs/ARCHITECTURE.md +252 -0
  13. scientific_computing_system-1.6.2/docs/CASE_STUDY_HUBBLE.md +78 -0
  14. scientific_computing_system-1.6.2/docs/CASE_STUDY_QUANTUM_ML.md +79 -0
  15. scientific_computing_system-1.6.2/docs/api.md +133 -0
  16. scientific_computing_system-1.6.2/docs/benchmarks.md +62 -0
  17. scientific_computing_system-1.6.2/docs/cookbook.md +862 -0
  18. scientific_computing_system-1.6.2/docs/getting-started.md +185 -0
  19. scientific_computing_system-1.6.2/docs/index.md +67 -0
  20. scientific_computing_system-1.6.2/docs/maintenance.md +61 -0
  21. scientific_computing_system-1.6.2/docs/research-workflows.md +82 -0
  22. scientific_computing_system-1.6.2/docs/tour_of_numerical_methods.md +330 -0
  23. scientific_computing_system-1.6.2/docs/tutorials/core_demo.md +35 -0
  24. scientific_computing_system-1.6.2/docs/tutorials/data_analysis_demo.md +43 -0
  25. scientific_computing_system-1.6.2/docs/tutorials/diffeq_demo.md +48 -0
  26. scientific_computing_system-1.6.2/docs/tutorials/fft2_demo.md +67 -0
  27. scientific_computing_system-1.6.2/docs/tutorials/graph_demo.md +45 -0
  28. scientific_computing_system-1.6.2/docs/tutorials/hypothesis_demo.md +44 -0
  29. scientific_computing_system-1.6.2/docs/tutorials/hypothesis_tests_demo.md +170 -0
  30. scientific_computing_system-1.6.2/docs/tutorials/hypothesis_with_stats_demo.md +80 -0
  31. scientific_computing_system-1.6.2/docs/tutorials/knowledge_demo.md +114 -0
  32. scientific_computing_system-1.6.2/docs/tutorials/linalg_demo.md +103 -0
  33. scientific_computing_system-1.6.2/docs/tutorials/math_utils_demo.md +46 -0
  34. scientific_computing_system-1.6.2/docs/tutorials/ml_advanced_demo.md +96 -0
  35. scientific_computing_system-1.6.2/docs/tutorials/ml_and_viz_demo.md +93 -0
  36. scientific_computing_system-1.6.2/docs/tutorials/ml_demo.md +70 -0
  37. scientific_computing_system-1.6.2/docs/tutorials/modeling_demo.md +82 -0
  38. scientific_computing_system-1.6.2/docs/tutorials/montecarlo_demo.md +42 -0
  39. scientific_computing_system-1.6.2/docs/tutorials/nlp_attention_demo.md +107 -0
  40. scientific_computing_system-1.6.2/docs/tutorials/nlp_bpe_demo.md +103 -0
  41. scientific_computing_system-1.6.2/docs/tutorials/nlp_mini_gpt_demo.md +110 -0
  42. scientific_computing_system-1.6.2/docs/tutorials/nlp_viz.md +76 -0
  43. scientific_computing_system-1.6.2/docs/tutorials/numerical_integration_demo.md +65 -0
  44. scientific_computing_system-1.6.2/docs/tutorials/optimization_demo.md +106 -0
  45. scientific_computing_system-1.6.2/docs/tutorials/pandas_io_demo.md +160 -0
  46. scientific_computing_system-1.6.2/docs/tutorials/probability_demo.md +48 -0
  47. scientific_computing_system-1.6.2/docs/tutorials/quantum_demo.md +31 -0
  48. scientific_computing_system-1.6.2/docs/tutorials/quick_start.md +44 -0
  49. scientific_computing_system-1.6.2/docs/tutorials/scientific_demo.md +46 -0
  50. scientific_computing_system-1.6.2/docs/tutorials/signals_demo.md +167 -0
  51. scientific_computing_system-1.6.2/docs/tutorials/stats_demo.md +94 -0
  52. scientific_computing_system-1.6.2/docs/tutorials/stiff_ode_demo.md +84 -0
  53. scientific_computing_system-1.6.2/docs/tutorials/time_series_demo.md +145 -0
  54. scientific_computing_system-1.6.2/examples/core_demo.py +40 -0
  55. scientific_computing_system-1.6.2/examples/data_analysis_demo.py +60 -0
  56. scientific_computing_system-1.6.2/examples/diffeq_demo.py +34 -0
  57. scientific_computing_system-1.6.2/examples/fft2_demo.py +32 -0
  58. scientific_computing_system-1.6.2/examples/graph_demo.py +49 -0
  59. scientific_computing_system-1.6.2/examples/hypothesis_custom_generator.py +121 -0
  60. scientific_computing_system-1.6.2/examples/hypothesis_demo.py +48 -0
  61. scientific_computing_system-1.6.2/examples/hypothesis_tests_demo.py +52 -0
  62. scientific_computing_system-1.6.2/examples/hypothesis_with_stats_demo.py +43 -0
  63. scientific_computing_system-1.6.2/examples/knowledge_demo.py +100 -0
  64. scientific_computing_system-1.6.2/examples/linalg_demo.py +61 -0
  65. scientific_computing_system-1.6.2/examples/math_utils_demo.py +53 -0
  66. scientific_computing_system-1.6.2/examples/ml_and_viz_demo.py +47 -0
  67. scientific_computing_system-1.6.2/examples/modeling_demo.py +110 -0
  68. scientific_computing_system-1.6.2/examples/montecarlo_demo.py +41 -0
  69. scientific_computing_system-1.6.2/examples/nlp_attention_demo.py +168 -0
  70. scientific_computing_system-1.6.2/examples/nlp_bpe_demo.py +79 -0
  71. scientific_computing_system-1.6.2/examples/nlp_mini_gpt_demo.py +76 -0
  72. scientific_computing_system-1.6.2/examples/nlp_viz_demo.py +98 -0
  73. scientific_computing_system-1.6.2/examples/numerical_integration_demo.py +60 -0
  74. scientific_computing_system-1.6.2/examples/optimization_demo.py +34 -0
  75. scientific_computing_system-1.6.2/examples/plot_demo.py +84 -0
  76. scientific_computing_system-1.6.2/examples/plotting_notebook.ipynb +87 -0
  77. scientific_computing_system-1.6.2/examples/probability_demo.py +39 -0
  78. scientific_computing_system-1.6.2/examples/quantum_demo.py +42 -0
  79. scientific_computing_system-1.6.2/examples/scientific_demo.py +49 -0
  80. scientific_computing_system-1.6.2/examples/signals_demo.py +86 -0
  81. scientific_computing_system-1.6.2/examples/stats_demo.py +40 -0
  82. scientific_computing_system-1.6.2/examples/tour_of_numerical_methods.ipynb +497 -0
  83. scientific_computing_system-1.6.2/mkdocs.yml +104 -0
  84. scientific_computing_system-1.6.2/pyproject.toml +264 -0
  85. scientific_computing_system-1.6.2/requirements-dev.lock +427 -0
  86. scientific_computing_system-1.6.2/requirements.lock +6 -0
  87. scientific_computing_system-1.6.2/scripts/publish.py +203 -0
  88. scientific_computing_system-1.6.2/src/cds/__init__.py +102 -0
  89. scientific_computing_system-1.6.2/src/cds/__main__.py +8 -0
  90. scientific_computing_system-1.6.2/src/cds/_version.py +10 -0
  91. scientific_computing_system-1.6.2/src/cds/cli/__init__.py +104 -0
  92. scientific_computing_system-1.6.2/src/cds/cli/__main__.py +8 -0
  93. scientific_computing_system-1.6.2/src/cds/cli/_handlers.py +405 -0
  94. scientific_computing_system-1.6.2/src/cds/cli/_parser.py +156 -0
  95. scientific_computing_system-1.6.2/src/cds/cli/_style.py +117 -0
  96. scientific_computing_system-1.6.2/src/cds/core/__init__.py +5 -0
  97. scientific_computing_system-1.6.2/src/cds/core/_numeric.py +92 -0
  98. scientific_computing_system-1.6.2/src/cds/core/models.py +166 -0
  99. scientific_computing_system-1.6.2/src/cds/data_analysis/__init__.py +30 -0
  100. scientific_computing_system-1.6.2/src/cds/data_analysis/dataset.py +122 -0
  101. scientific_computing_system-1.6.2/src/cds/data_analysis/loader.py +75 -0
  102. scientific_computing_system-1.6.2/src/cds/data_analysis/pandas_io.py +108 -0
  103. scientific_computing_system-1.6.2/src/cds/data_analysis/transform.py +36 -0
  104. scientific_computing_system-1.6.2/src/cds/data_analysis/viz.py +88 -0
  105. scientific_computing_system-1.6.2/src/cds/diffeq/__init__.py +29 -0
  106. scientific_computing_system-1.6.2/src/cds/diffeq/_implicit.py +349 -0
  107. scientific_computing_system-1.6.2/src/cds/diffeq/solvers.py +312 -0
  108. scientific_computing_system-1.6.2/src/cds/graph/__init__.py +31 -0
  109. scientific_computing_system-1.6.2/src/cds/graph/algorithms.py +399 -0
  110. scientific_computing_system-1.6.2/src/cds/hypothesis/__init__.py +48 -0
  111. scientific_computing_system-1.6.2/src/cds/hypothesis/evaluator.py +369 -0
  112. scientific_computing_system-1.6.2/src/cds/hypothesis/generator.py +275 -0
  113. scientific_computing_system-1.6.2/src/cds/knowledge/__init__.py +41 -0
  114. scientific_computing_system-1.6.2/src/cds/knowledge/graph.py +489 -0
  115. scientific_computing_system-1.6.2/src/cds/knowledge/notes.py +231 -0
  116. scientific_computing_system-1.6.2/src/cds/knowledge/retrieval.py +167 -0
  117. scientific_computing_system-1.6.2/src/cds/math_utils/__init__.py +41 -0
  118. scientific_computing_system-1.6.2/src/cds/math_utils/calculus.py +40 -0
  119. scientific_computing_system-1.6.2/src/cds/math_utils/linalg.py +461 -0
  120. scientific_computing_system-1.6.2/src/cds/math_utils/special.py +167 -0
  121. scientific_computing_system-1.6.2/src/cds/ml/__init__.py +25 -0
  122. scientific_computing_system-1.6.2/src/cds/ml/clustering.py +190 -0
  123. scientific_computing_system-1.6.2/src/cds/ml/decomposition.py +172 -0
  124. scientific_computing_system-1.6.2/src/cds/ml/linear_models.py +225 -0
  125. scientific_computing_system-1.6.2/src/cds/ml/neighbors.py +162 -0
  126. scientific_computing_system-1.6.2/src/cds/ml/neural.py +204 -0
  127. scientific_computing_system-1.6.2/src/cds/ml/preprocessing.py +131 -0
  128. scientific_computing_system-1.6.2/src/cds/ml/tree.py +202 -0
  129. scientific_computing_system-1.6.2/src/cds/modeling/__init__.py +40 -0
  130. scientific_computing_system-1.6.2/src/cds/modeling/_base.py +210 -0
  131. scientific_computing_system-1.6.2/src/cds/modeling/_nodes.py +526 -0
  132. scientific_computing_system-1.6.2/src/cds/modeling/expression.py +81 -0
  133. scientific_computing_system-1.6.2/src/cds/modeling/model.py +134 -0
  134. scientific_computing_system-1.6.2/src/cds/modeling/solver.py +176 -0
  135. scientific_computing_system-1.6.2/src/cds/montecarlo/__init__.py +21 -0
  136. scientific_computing_system-1.6.2/src/cds/montecarlo/methods.py +272 -0
  137. scientific_computing_system-1.6.2/src/cds/nlp/__init__.py +170 -0
  138. scientific_computing_system-1.6.2/src/cds/nlp/attention.py +285 -0
  139. scientific_computing_system-1.6.2/src/cds/nlp/autograd/__init__.py +70 -0
  140. scientific_computing_system-1.6.2/src/cds/nlp/autograd/_grad.py +120 -0
  141. scientific_computing_system-1.6.2/src/cds/nlp/autograd/ops.py +133 -0
  142. scientific_computing_system-1.6.2/src/cds/nlp/autograd/tensor.py +298 -0
  143. scientific_computing_system-1.6.2/src/cds/nlp/bpe.py +449 -0
  144. scientific_computing_system-1.6.2/src/cds/nlp/data.py +70 -0
  145. scientific_computing_system-1.6.2/src/cds/nlp/embed.py +190 -0
  146. scientific_computing_system-1.6.2/src/cds/nlp/layers.py +259 -0
  147. scientific_computing_system-1.6.2/src/cds/nlp/model.py +456 -0
  148. scientific_computing_system-1.6.2/src/cds/nlp/optim.py +163 -0
  149. scientific_computing_system-1.6.2/src/cds/nlp/training.py +167 -0
  150. scientific_computing_system-1.6.2/src/cds/nlp/viz.py +254 -0
  151. scientific_computing_system-1.6.2/src/cds/numerical_integration/__init__.py +31 -0
  152. scientific_computing_system-1.6.2/src/cds/numerical_integration/quadrature.py +480 -0
  153. scientific_computing_system-1.6.2/src/cds/optimization/__init__.py +18 -0
  154. scientific_computing_system-1.6.2/src/cds/optimization/_metaheuristics.py +287 -0
  155. scientific_computing_system-1.6.2/src/cds/optimization/minimize.py +425 -0
  156. scientific_computing_system-1.6.2/src/cds/plot/__init__.py +49 -0
  157. scientific_computing_system-1.6.2/src/cds/plot/_backend.py +32 -0
  158. scientific_computing_system-1.6.2/src/cds/plot/charts.py +462 -0
  159. scientific_computing_system-1.6.2/src/cds/probability/__init__.py +55 -0
  160. scientific_computing_system-1.6.2/src/cds/probability/_advanced.py +283 -0
  161. scientific_computing_system-1.6.2/src/cds/probability/distributions.py +236 -0
  162. scientific_computing_system-1.6.2/src/cds/py.typed +0 -0
  163. scientific_computing_system-1.6.2/src/cds/quantum/__init__.py +51 -0
  164. scientific_computing_system-1.6.2/src/cds/quantum/circuit.py +92 -0
  165. scientific_computing_system-1.6.2/src/cds/quantum/multi_qubit.py +255 -0
  166. scientific_computing_system-1.6.2/src/cds/quantum/simulator.py +38 -0
  167. scientific_computing_system-1.6.2/src/cds/scientific/__init__.py +34 -0
  168. scientific_computing_system-1.6.2/src/cds/scientific/constants.py +35 -0
  169. scientific_computing_system-1.6.2/src/cds/scientific/formulas.py +116 -0
  170. scientific_computing_system-1.6.2/src/cds/signals/__init__.py +43 -0
  171. scientific_computing_system-1.6.2/src/cds/signals/filters.py +421 -0
  172. scientific_computing_system-1.6.2/src/cds/signals/processing.py +224 -0
  173. scientific_computing_system-1.6.2/src/cds/stats/__init__.py +83 -0
  174. scientific_computing_system-1.6.2/src/cds/stats/_distributions.py +102 -0
  175. scientific_computing_system-1.6.2/src/cds/stats/descriptive.py +172 -0
  176. scientific_computing_system-1.6.2/src/cds/stats/hypothesis_tests.py +403 -0
  177. scientific_computing_system-1.6.2/src/cds/stats/nonparametric.py +131 -0
  178. scientific_computing_system-1.6.2/src/cds/stats/regression.py +51 -0
  179. scientific_computing_system-1.6.2/src/cds/stats/time_series.py +408 -0
  180. scientific_computing_system-1.6.2/tests/__init__.py +0 -0
  181. scientific_computing_system-1.6.2/tests/conftest.py +109 -0
  182. scientific_computing_system-1.6.2/tests/test_benchmarks.py +111 -0
  183. scientific_computing_system-1.6.2/tests/test_cli.py +51 -0
  184. scientific_computing_system-1.6.2/tests/test_cli_color.py +114 -0
  185. scientific_computing_system-1.6.2/tests/test_cli_extended.py +239 -0
  186. scientific_computing_system-1.6.2/tests/test_core.py +273 -0
  187. scientific_computing_system-1.6.2/tests/test_data_analysis.py +146 -0
  188. scientific_computing_system-1.6.2/tests/test_data_analysis_lazy_bridge.py +68 -0
  189. scientific_computing_system-1.6.2/tests/test_data_analysis_pandas_io.py +119 -0
  190. scientific_computing_system-1.6.2/tests/test_dataset.py +91 -0
  191. scientific_computing_system-1.6.2/tests/test_diffeq.py +186 -0
  192. scientific_computing_system-1.6.2/tests/test_diffeq_implicit.py +173 -0
  193. scientific_computing_system-1.6.2/tests/test_edge_misc_numerical.py +649 -0
  194. scientific_computing_system-1.6.2/tests/test_edge_ml_quantum_linalg.py +243 -0
  195. scientific_computing_system-1.6.2/tests/test_edge_nlp.py +229 -0
  196. scientific_computing_system-1.6.2/tests/test_edge_quantum_evaluator_cli.py +647 -0
  197. scientific_computing_system-1.6.2/tests/test_edge_stats_optimization_signals.py +406 -0
  198. scientific_computing_system-1.6.2/tests/test_fft2.py +67 -0
  199. scientific_computing_system-1.6.2/tests/test_graph.py +380 -0
  200. scientific_computing_system-1.6.2/tests/test_hypothesis.py +216 -0
  201. scientific_computing_system-1.6.2/tests/test_hypothesis_engine.py +57 -0
  202. scientific_computing_system-1.6.2/tests/test_hypothesis_tests.py +286 -0
  203. scientific_computing_system-1.6.2/tests/test_knowledge.py +1147 -0
  204. scientific_computing_system-1.6.2/tests/test_layering.py +112 -0
  205. scientific_computing_system-1.6.2/tests/test_linalg_extended.py +179 -0
  206. scientific_computing_system-1.6.2/tests/test_linalg_qr_cholesky.py +68 -0
  207. scientific_computing_system-1.6.2/tests/test_math_utils.py +157 -0
  208. scientific_computing_system-1.6.2/tests/test_ml_clustering.py +92 -0
  209. scientific_computing_system-1.6.2/tests/test_ml_knn.py +95 -0
  210. scientific_computing_system-1.6.2/tests/test_ml_linreg.py +70 -0
  211. scientific_computing_system-1.6.2/tests/test_ml_logreg.py +84 -0
  212. scientific_computing_system-1.6.2/tests/test_ml_pca.py +98 -0
  213. scientific_computing_system-1.6.2/tests/test_ml_preprocessing.py +104 -0
  214. scientific_computing_system-1.6.2/tests/test_ml_tree.py +89 -0
  215. scientific_computing_system-1.6.2/tests/test_ml_viz.py +58 -0
  216. scientific_computing_system-1.6.2/tests/test_modeling.py +726 -0
  217. scientific_computing_system-1.6.2/tests/test_montecarlo.py +149 -0
  218. scientific_computing_system-1.6.2/tests/test_multi_qubit.py +343 -0
  219. scientific_computing_system-1.6.2/tests/test_nlp_attention.py +335 -0
  220. scientific_computing_system-1.6.2/tests/test_nlp_autograd.py +435 -0
  221. scientific_computing_system-1.6.2/tests/test_nlp_bpe.py +463 -0
  222. scientific_computing_system-1.6.2/tests/test_nlp_embed.py +240 -0
  223. scientific_computing_system-1.6.2/tests/test_nlp_layers.py +276 -0
  224. scientific_computing_system-1.6.2/tests/test_nlp_model.py +172 -0
  225. scientific_computing_system-1.6.2/tests/test_nlp_training.py +262 -0
  226. scientific_computing_system-1.6.2/tests/test_nlp_viz.py +188 -0
  227. scientific_computing_system-1.6.2/tests/test_numerical_integration.py +374 -0
  228. scientific_computing_system-1.6.2/tests/test_numerical_invariants.py +768 -0
  229. scientific_computing_system-1.6.2/tests/test_optimization.py +139 -0
  230. scientific_computing_system-1.6.2/tests/test_optimization_metaheuristics.py +221 -0
  231. scientific_computing_system-1.6.2/tests/test_plot_charts.py +247 -0
  232. scientific_computing_system-1.6.2/tests/test_plot_lazy.py +48 -0
  233. scientific_computing_system-1.6.2/tests/test_probability.py +274 -0
  234. scientific_computing_system-1.6.2/tests/test_probability_advanced.py +226 -0
  235. scientific_computing_system-1.6.2/tests/test_property_invariants.py +277 -0
  236. scientific_computing_system-1.6.2/tests/test_quantum.py +131 -0
  237. scientific_computing_system-1.6.2/tests/test_scientific.py +185 -0
  238. scientific_computing_system-1.6.2/tests/test_signals.py +146 -0
  239. scientific_computing_system-1.6.2/tests/test_signals_filters.py +437 -0
  240. scientific_computing_system-1.6.2/tests/test_special_numerics.py +44 -0
  241. scientific_computing_system-1.6.2/tests/test_stats.py +206 -0
  242. scientific_computing_system-1.6.2/tests/test_stats_nonparametric.py +87 -0
  243. scientific_computing_system-1.6.2/tests/test_stats_time_series.py +352 -0
@@ -0,0 +1,239 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ share/python-wheels/
24
+ *.egg-info/
25
+ .installed.cfg
26
+ *.egg
27
+ MANIFEST
28
+
29
+ # PyInstaller
30
+ *.manifest
31
+ *.spec
32
+
33
+ # Installer logs
34
+ pip-log.txt
35
+ pip-delete-this-directory.txt
36
+
37
+ # Unit test / coverage reports
38
+ htmlcov/
39
+ .tox/
40
+ .nox/
41
+ .coverage
42
+ .coverage.*
43
+ .cache
44
+ nosetests.xml
45
+ coverage.xml
46
+ *.cover
47
+ *.py,cover
48
+ .hypothesis/
49
+ .pytest_cache/
50
+ cover/
51
+
52
+ # Translations
53
+ *.mo
54
+ *.pot
55
+
56
+ # Django stuff
57
+ *.log
58
+ local_settings.py
59
+ db.sqlite3
60
+ db.sqlite3-journal
61
+
62
+ # Flask stuff
63
+ instance/
64
+ .webassets-cache
65
+
66
+ # Scrapy stuff
67
+ .scrapy
68
+
69
+ # Sphinx documentation
70
+ docs/_build/
71
+
72
+ # PyBuilder
73
+ .pybuilder/
74
+ target/
75
+
76
+ # Jupyter Notebook
77
+ .ipynb_checkpoints
78
+
79
+ # IPython
80
+ profile_default/
81
+ ipython_config.py
82
+
83
+ # pyenv
84
+ .python-version
85
+
86
+ # pipenv
87
+ Pipfile.lock
88
+
89
+ # poetry
90
+ poetry.lock
91
+
92
+ # pdm
93
+ .pdm.toml
94
+ .pdm-python
95
+ .pdm-build/
96
+
97
+ # PEP 582
98
+ __pypackages__/
99
+
100
+ # Celery stuff
101
+ celerybeat-schedule
102
+ celerybeat.pid
103
+
104
+ # SageMath parsed files
105
+ *.sage.py
106
+
107
+ # Environments
108
+ .env
109
+ .venv
110
+ env/
111
+ venv/
112
+ ENV/
113
+ env.bak/
114
+ venv.bak/
115
+
116
+ # Spyder project settings
117
+ .spyderproject
118
+ .spyproject
119
+
120
+ # Rope project settings
121
+ .ropeproject
122
+
123
+ # mkdocs documentation
124
+ /site
125
+
126
+ # Build / promo render artifacts — large intermediate files (PNG frames,
127
+ # GIF/MP4/WebM) generated by the promo scripts. They must never ship in the
128
+ # sdist (would balloon it by ~90 MB) and never be committed.
129
+ node_modules/
130
+ .ruff_cache/
131
+ assets/_promo_frames/
132
+ assets/cds_promo.gif
133
+ assets/cds_promo.mp4
134
+ assets/cds_promo.webm
135
+ assets/cds_promo_poster.png
136
+ assets/promo_hero.html
137
+ docs/assets/
138
+
139
+ # Local launch/promo copy — personal drafting scratch (Reddit/HN/X posts,
140
+ # awesome-list PR text). Not docs-site material; do not commit.
141
+ ARTICLE_DRAFT.md
142
+ AWESOME_SUBMISSIONS_DRAFT.md
143
+ LAUNCH_POSTS_DRAFT.md
144
+ pypi_meta.json
145
+
146
+ # mypy
147
+ .mypy_cache/
148
+ .dmypy.json
149
+ dmypy.json
150
+
151
+ # Pyre type checker
152
+ .pyre/
153
+
154
+ # pytype static type analyzer
155
+ .pytype/
156
+
157
+ # Cython debug symbols
158
+ cython_debug/
159
+
160
+ # IDEs
161
+ .idea/
162
+ .vscode/
163
+ *.swp
164
+ *.swo
165
+ *~
166
+
167
+ # OS
168
+ .DS_Store
169
+ Thumbs.db
170
+
171
+ # Project specific
172
+ *.tmp
173
+ *.bak
174
+ results/
175
+ outputs/
176
+ chains_*/
177
+ data/real/
178
+ data/external/
179
+ *.zip
180
+ *.tar.gz
181
+ *.tgz
182
+
183
+ # CDS specific (future)
184
+ .cds/
185
+ *.hypo.json
186
+
187
+ # Demo runtime artifacts (examples/ write these next to the script)
188
+ _demo_*.json
189
+
190
+ # ZCode agent session state (local only, never commit)
191
+ .zcode/
192
+
193
+ # Windows NUL device accidentally materialized as a file
194
+ nul
195
+
196
+ # Local README preview/render scratch (PNG/HTML mockups generated by
197
+ # scripts/render_readme*.py to eyeball layout before pushing). These are
198
+ # personal review artifacts, not docs-site material; do not commit.
199
+ README_FULL.png
200
+ README_PREVIEW.png
201
+ README_TOP.png
202
+ README_PREVIEW.html
203
+ README_PREVIEW_SECTIONS.html
204
+ README_SECTIONS/
205
+ README_TILES/
206
+
207
+ # Dashboard screenshot helpers (local promo, regenerated on demand)
208
+ assets/monte_carlo_dashboard.png
209
+
210
+ # Local marketing/community posting scratch (Reddit/HN/X drafts, trackers).
211
+ # Personal drafting, not docs-site material; do not commit.
212
+ docs/marketing/
213
+
214
+ # One-off research artifacts (API dumps captured while debugging the
215
+ # Deployments page; not tracked, regenerated on demand)
216
+ deployments_raw.json
217
+
218
+ # Playwright CLI verification cache (local link/doc checks; regenerated on
219
+ # demand, never commit)
220
+ .playwright-cli/
221
+
222
+ # Local promo-GIF QA scratch (audit/compare/measure scripts + extracted
223
+ # frames). One-off diagnostic tooling for eyeballing the promo render; not
224
+ # part of the build or docs site. Do not commit.
225
+ scripts/_compare_gifs.py
226
+ scripts/_gif_audit.py
227
+ scripts/_gif_audit_old.py
228
+ scripts/_gif_inspect.py
229
+ scripts/_layout_compare.py
230
+ scripts/_measure.mjs
231
+ scripts/_old_anatomy.py
232
+ scripts/_old_flow.py
233
+ assets/_qa_frames/
234
+ assets/_qa_old/
235
+ assets/_qa_old_full/
236
+ assets/_qa_view/
237
+
238
+ # plot demo output
239
+ examples/_plot_out/