Skip to content

Commit 555aa25

Browse files
committed
backing up progress
1 parent 4645121 commit 555aa25

File tree

9 files changed

+102
-3
lines changed

9 files changed

+102
-3
lines changed

clustrix.egg-info/PKG-INFO

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
1-
Metadata-Version: 2.1
1+
Metadata-Version: 2.4
22
Name: clustrix
33
Version: 0.1.1
44
Summary: Seamless distributed computing for Python functions
55
Home-page: https://github.com/ContextLab/clustrix
66
Author: Contextual Dynamics Laboratory
7-
Author-email: contextualdynamics@gmail.com
7+
Author-email: Contextual Dynamics Laboratory <contextualdynamics@gmail.com>
8+
License: MIT
9+
Project-URL: Homepage, https://github.com/ContextLab/clustrix
10+
Project-URL: Repository, https://github.com/ContextLab/clustrix
11+
Project-URL: Documentation, https://clustrix.readthedocs.io
12+
Project-URL: Bug Tracker, https://github.com/ContextLab/clustrix/issues
13+
Keywords: distributed-computing,cluster,slurm,kubernetes,parallel
814
Classifier: Development Status :: 4 - Beta
915
Classifier: Intended Audience :: Developers
1016
Classifier: Intended Audience :: Science/Research
@@ -101,6 +107,10 @@ Requires-Dist: sphinx>=4.0; extra == "all"
101107
Requires-Dist: sphinx-wagtail-theme>=6.0.0; extra == "all"
102108
Requires-Dist: sphinx-autodoc-typehints>=1.12; extra == "all"
103109
Requires-Dist: nbsphinx>=0.8; extra == "all"
110+
Dynamic: author
111+
Dynamic: home-page
112+
Dynamic: license-file
113+
Dynamic: requires-python
104114

105115
# Clustrix
106116

clustrix.egg-info/SOURCES.txt

Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
1+
.flake8
2+
.gitignore
3+
.readthedocs.yaml
4+
CLAUDE.md
5+
CONTRIBUTING.md
6+
CONTRIBUTORS.md
17
LICENSE
28
README.md
9+
fix_notebooks.py
10+
pyproject.toml
311
setup.py
12+
.github/workflows/tests.yml
413
clustrix/__init__.py
514
clustrix/async_executor_simple.py
615
clustrix/auto_install.py
@@ -34,6 +43,84 @@ clustrix/cost_providers/aws.py
3443
clustrix/cost_providers/azure.py
3544
clustrix/cost_providers/gcp.py
3645
clustrix/cost_providers/lambda_cloud.py
46+
dist/clustrix-0.1.1-py3-none-any.whl
47+
dist/clustrix-0.1.1.tar.gz
48+
docs/Makefile
49+
docs/requirements.txt
50+
docs/notebooks/basic_usage.ipynb
51+
docs/notebooks/complete_api_demo.ipynb
52+
docs/notebooks/kubernetes_tutorial.ipynb
53+
docs/notebooks/pbs_tutorial.ipynb
54+
docs/notebooks/sge_tutorial.ipynb
55+
docs/notebooks/slurm_tutorial.ipynb
56+
docs/notebooks/ssh_tutorial.ipynb
57+
docs/notes/aws_cloud_tutorial_review_2025-06-26.md
58+
docs/notes/session_2025-01-29_widget_fixes_and_sge_support.md
59+
docs/source/conf.py
60+
docs/source/index.rst
61+
docs/source/installation.rst
62+
docs/source/ssh_setup.rst
63+
docs/source/_static/custom.css
64+
docs/source/_static/img/wagtail-logo-circle.svg
65+
docs/source/_static/img/screenshots/widget_default.png
66+
docs/source/_static/img/screenshots/widget_dropdown.png
67+
docs/source/_static/img/screenshots/widget_gcp.png
68+
docs/source/_static/img/screenshots/widget_lambda.png
69+
docs/source/_static/img/screenshots/widget_slurm_advanced.png
70+
docs/source/_static/img/screenshots/widget_slurm_basic.png
71+
docs/source/api/config.rst
72+
docs/source/api/cost_monitoring.rst
73+
docs/source/api/decorator.rst
74+
docs/source/api/local_executor.rst
75+
docs/source/api/notebook_magic.rst
76+
docs/source/notebooks/aws_cloud_tutorial.ipynb
77+
docs/source/notebooks/azure_cloud_tutorial.ipynb
78+
docs/source/notebooks/basic_usage.ipynb
79+
docs/source/notebooks/cluster_config_example.ipynb
80+
docs/source/notebooks/complete_api_demo.ipynb
81+
docs/source/notebooks/cost_monitoring_tutorial.ipynb
82+
docs/source/notebooks/gcp_cloud_tutorial.ipynb
83+
docs/source/notebooks/huggingface_spaces_tutorial.ipynb
84+
docs/source/notebooks/kubernetes_tutorial.ipynb
85+
docs/source/notebooks/lambda_cloud_tutorial.ipynb
86+
docs/source/notebooks/pbs_tutorial.ipynb
87+
docs/source/notebooks/sge_tutorial.ipynb
88+
docs/source/notebooks/slurm_tutorial.ipynb
89+
docs/source/notebooks/ssh_tutorial.ipynb
90+
docs/source/tutorials/kubernetes_tutorial.rst
91+
docs/source/tutorials/pbs_tutorial.rst
92+
docs/source/tutorials/slurm_tutorial.rst
93+
notes/all_checks_status.csv
94+
notes/cloud_k8s_integration_session_2025-06-29.md
95+
notes/complete_test_isolation_fix_2025-06-27.md
96+
notes/comprehensive_session_summary_2025-06-25.md
97+
notes/debugging_breakthrough_2025-06-25.md
98+
notes/documentation_fixes_status.csv
99+
notes/documentation_polish_session_2025-06-26.md
100+
notes/documentation_update_session_2025-06-29.md
101+
notes/edge_cases_and_enhancements_2025-06-26.md
102+
notes/final_breakthrough_2025-06-25.md
103+
notes/github_actions_mock_fixes_2025-06-27.md
104+
notes/github_issues_systematic_review_2025-06-28.md
105+
notes/github_issues_to_create.md
106+
notes/guide_text_conversion_session_2025-06-26.md
107+
notes/learnings_edge_cases_2025-06-26.md
108+
notes/linting_fixes_session_2025-06-29.md
109+
notes/notebook_validation_and_fixes_2025-06-26.md
110+
notes/open_issues_and_future_considerations_2025-06-27.md
111+
notes/session_completion_summary.md
112+
notes/session_comprehensive_testing_fixes_2025-06-27.md
113+
notes/session_debug_2025-06-25.md
114+
notes/session_final_status_2025-06-25.md
115+
notes/session_final_test_resolution_2025-06-27.md
116+
notes/session_github_actions_debugging_2025-06-27.md
117+
notes/session_summary_2025-06-25.md
118+
notes/sphinx_theme_and_notebooks_update_2025-06-25.md
119+
notes/systematic_issue_resolution_session_2025-06-28.md
120+
notes/technical_learnings_async_tooltips_2025-06-28.md
121+
notes/technical_learnings_widget_overhaul_2025-06-27.md
122+
notes/technical_patterns_and_learnings_2025-06-27.md
123+
notes/widget_overhaul_session_2025-06-27.md
37124
tests/__init__.py
38125
tests/conftest.py
39126
tests/test_async_execution.py
@@ -50,5 +137,6 @@ tests/test_kubernetes_integration.py
50137
tests/test_local_executor.py
51138
tests/test_loop_analysis.py
52139
tests/test_notebook_magic.py
140+
tests/test_notebook_magic.py.bak
53141
tests/test_utils.py
54142
tests/test_widget_fixes.py

clustrix.egg-info/top_level.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
11
clustrix
2-
tests
-4.27 KB
Binary file not shown.
-810 Bytes
Binary file not shown.
-1.6 KB
Binary file not shown.

docs/build/doctrees/index.doctree

-269 Bytes
Binary file not shown.
-5.37 KB
Binary file not shown.

docs/build/doctrees/nbsphinx/notebooks/cluster_config_example.ipynb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
},
1313
{
1414
"cell_type": "code",
15+
"execution_count": null,
1516
"id": "import",
1617
"metadata": {},
1718
"outputs": [],
@@ -35,6 +36,7 @@
3536
},
3637
{
3738
"cell_type": "code",
39+
"execution_count": null,
3840
"id": "widget",
3941
"metadata": {},
4042
"outputs": [],

0 commit comments

Comments
 (0)