calkit-python 0.45.0__tar.gz → 0.45.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.
- calkit_python-0.45.2/AGENTS.md +67 -0
- calkit_python-0.45.2/PKG-INFO +411 -0
- calkit_python-0.45.2/calkit/__init__.py +133 -0
- calkit_python-0.45.2/calkit/cli/check.py +1542 -0
- calkit_python-0.45.2/calkit/cli/import_.py +524 -0
- calkit_python-0.45.2/calkit/cli/list.py +474 -0
- calkit_python-0.45.2/calkit/cli/main/core.py +3969 -0
- calkit_python-0.45.2/calkit/cli/new.py +4166 -0
- calkit_python-0.45.2/calkit/cli/update.py +1395 -0
- calkit_python-0.45.2/calkit/core.py +1393 -0
- calkit_python-0.45.2/calkit/dvc/core.py +1039 -0
- calkit_python-0.45.2/calkit/models/core.py +1634 -0
- calkit_python-0.45.2/calkit/models/pipeline.py +2116 -0
- calkit_python-0.45.2/calkit/notebooks.py +286 -0
- calkit_python-0.45.2/calkit/procedures.py +53 -0
- calkit_python-0.45.2/calkit/provenance.py +28 -0
- calkit_python-0.45.2/calkit/reproducibility.py +476 -0
- calkit_python-0.45.2/calkit/templates/core.py +143 -0
- calkit_python-0.45.2/calkit/templates/latex/ieee-conference/paper.tex +61 -0
- calkit_python-0.45.2/calkit/templates/latex/report/paper.tex +64 -0
- calkit_python-0.45.2/calkit/tests/cli/main/test_core.py +2507 -0
- calkit_python-0.45.2/calkit/tests/cli/main/test_subprojects.py +529 -0
- calkit_python-0.45.2/calkit/tests/cli/test_list.py +253 -0
- calkit_python-0.45.2/calkit/tests/cli/test_new.py +1986 -0
- calkit_python-0.45.2/calkit/tests/cli/test_update.py +463 -0
- calkit_python-0.45.2/calkit/tests/dvc/test_core.py +528 -0
- calkit_python-0.45.2/calkit/tests/test_models.py +458 -0
- calkit_python-0.45.2/calkit/tests/test_procedures.py +64 -0
- calkit_python-0.45.2/calkit/tests/test_reproducibility.py +201 -0
- calkit_python-0.45.2/docs/calkit-yaml.md +650 -0
- calkit_python-0.45.2/docs/cli-reference.md +3741 -0
- calkit_python-0.45.2/docs/datasets.md +128 -0
- calkit_python-0.45.2/docs/examples.md +102 -0
- calkit_python-0.45.2/docs/latex.md +198 -0
- calkit_python-0.45.2/docs/provenance.md +178 -0
- calkit_python-0.45.2/docs/schemas/calkit.json +8312 -0
- calkit_python-0.45.2/docs/tutorials/procedures.md +140 -0
- calkit_python-0.45.2/hub/.env.example +107 -0
- calkit_python-0.45.2/hub/AGENTS.md +225 -0
- calkit_python-0.45.2/hub/backend/app/alembic/versions/97762605447f_add_onboarding_flags_and_feedback.py +76 -0
- calkit_python-0.45.2/hub/backend/app/api/deps.py +276 -0
- calkit_python-0.45.2/hub/backend/app/api/main.py +26 -0
- calkit_python-0.45.2/hub/backend/app/api/routes/feedback.py +271 -0
- calkit_python-0.45.2/hub/backend/app/api/routes/login.py +892 -0
- calkit_python-0.45.2/hub/backend/app/api/routes/misc.py +543 -0
- calkit_python-0.45.2/hub/backend/app/api/routes/projects/__init__.py +29 -0
- calkit_python-0.45.2/hub/backend/app/api/routes/projects/activity.py +205 -0
- calkit_python-0.45.2/hub/backend/app/api/routes/projects/core.py +10535 -0
- calkit_python-0.45.2/hub/backend/app/api/routes/projects/datasets.py +361 -0
- calkit_python-0.45.2/hub/backend/app/api/routes/projects/dvc.py +213 -0
- calkit_python-0.45.2/hub/backend/app/api/routes/projects/figures.py +405 -0
- calkit_python-0.45.2/hub/backend/app/api/routes/projects/pipeline.py +299 -0
- calkit_python-0.45.2/hub/backend/app/api/routes/users.py +1235 -0
- calkit_python-0.45.2/hub/backend/app/config.py +317 -0
- calkit_python-0.45.2/hub/backend/app/dvc.py +438 -0
- calkit_python-0.45.2/hub/backend/app/email-templates/build/verify_email.html +171 -0
- calkit_python-0.45.2/hub/backend/app/email-templates/src/verify_email.mjml +18 -0
- calkit_python-0.45.2/hub/backend/app/formatting.py +47 -0
- calkit_python-0.45.2/hub/backend/app/git.py +1597 -0
- calkit_python-0.45.2/hub/backend/app/github.py +171 -0
- calkit_python-0.45.2/hub/backend/app/imports.py +262 -0
- calkit_python-0.45.2/hub/backend/app/messaging.py +178 -0
- calkit_python-0.45.2/hub/backend/app/mixpanel.py +272 -0
- calkit_python-0.45.2/hub/backend/app/models/core.py +1605 -0
- calkit_python-0.45.2/hub/backend/app/pipeline.py +780 -0
- calkit_python-0.45.2/hub/backend/app/projects.py +1539 -0
- calkit_python-0.45.2/hub/backend/app/security.py +160 -0
- calkit_python-0.45.2/hub/backend/app/tests/api/routes/projects/test_activity.py +184 -0
- calkit_python-0.45.2/hub/backend/app/tests/api/routes/projects/test_core.py +4157 -0
- calkit_python-0.45.2/hub/backend/app/tests/api/routes/projects/test_datasets.py +474 -0
- calkit_python-0.45.2/hub/backend/app/tests/api/routes/projects/test_dvc.py +263 -0
- calkit_python-0.45.2/hub/backend/app/tests/api/routes/projects/test_figure_upload.py +33 -0
- calkit_python-0.45.2/hub/backend/app/tests/api/routes/projects/test_figures.py +444 -0
- calkit_python-0.45.2/hub/backend/app/tests/api/routes/projects/test_misc.py +169 -0
- calkit_python-0.45.2/hub/backend/app/tests/api/routes/projects/test_pipeline.py +274 -0
- calkit_python-0.45.2/hub/backend/app/tests/api/routes/projects/test_publications.py +397 -0
- calkit_python-0.45.2/hub/backend/app/tests/api/routes/projects/test_reference_items.py +37 -0
- calkit_python-0.45.2/hub/backend/app/tests/api/routes/projects/test_templates.py +100 -0
- calkit_python-0.45.2/hub/backend/app/tests/api/routes/test_feedback.py +215 -0
- calkit_python-0.45.2/hub/backend/app/tests/api/routes/test_login.py +699 -0
- calkit_python-0.45.2/hub/backend/app/tests/api/routes/test_misc.py +116 -0
- calkit_python-0.45.2/hub/backend/app/tests/api/routes/test_users.py +1190 -0
- calkit_python-0.45.2/hub/backend/app/tests/test_core.py +45 -0
- calkit_python-0.45.2/hub/backend/app/tests/test_formatting.py +18 -0
- calkit_python-0.45.2/hub/backend/app/tests/test_pipeline.py +981 -0
- calkit_python-0.45.2/hub/backend/app/tests/test_projects.py +798 -0
- calkit_python-0.45.2/hub/backend/app/users.py +953 -0
- calkit_python-0.45.2/hub/backend/pyproject.toml +105 -0
- calkit_python-0.45.2/hub/docker-compose.yml +432 -0
- calkit_python-0.45.2/hub/frontend/openapi-ts.config.ts +33 -0
- calkit_python-0.45.2/hub/frontend/public/tex/busytex_pipeline.js +760 -0
- calkit_python-0.45.2/hub/frontend/src/client/index.ts +1215 -0
- calkit_python-0.45.2/hub/frontend/src/client/schemas.gen.ts +11256 -0
- calkit_python-0.45.2/hub/frontend/src/client/sdk.gen.ts +8799 -0
- calkit_python-0.45.2/hub/frontend/src/client/types.gen.ts +13902 -0
- calkit_python-0.45.2/hub/frontend/src/components/Admin/AddUser.tsx +191 -0
- calkit_python-0.45.2/hub/frontend/src/components/Admin/EditUser.tsx +185 -0
- calkit_python-0.45.2/hub/frontend/src/components/Admin/FeatureVotesTable.tsx +92 -0
- calkit_python-0.45.2/hub/frontend/src/components/Admin/FeedbackTable.tsx +150 -0
- calkit_python-0.45.2/hub/frontend/src/components/Common/ArtifactCompareModal.tsx +1148 -0
- calkit_python-0.45.2/hub/frontend/src/components/Common/ClearableInput.tsx +59 -0
- calkit_python-0.45.2/hub/frontend/src/components/Common/CodeEditorPane.tsx +201 -0
- calkit_python-0.45.2/hub/frontend/src/components/Common/CommentsPanel.tsx +451 -0
- calkit_python-0.45.2/hub/frontend/src/components/Common/FeatureVoteButton.tsx +81 -0
- calkit_python-0.45.2/hub/frontend/src/components/Common/FilterableSelect.tsx +186 -0
- calkit_python-0.45.2/hub/frontend/src/components/Common/GlobalSearch.tsx +309 -0
- calkit_python-0.45.2/hub/frontend/src/components/Common/HelpFeedback.tsx +184 -0
- calkit_python-0.45.2/hub/frontend/src/components/Common/InputsRow.tsx +62 -0
- calkit_python-0.45.2/hub/frontend/src/components/Common/NoArtifactFound.tsx +67 -0
- calkit_python-0.45.2/hub/frontend/src/components/Common/NotBuiltAlert.tsx +83 -0
- calkit_python-0.45.2/hub/frontend/src/components/Common/OAuthButtons.tsx +66 -0
- calkit_python-0.45.2/hub/frontend/src/components/Common/PdfDocumentViewer.tsx +1214 -0
- calkit_python-0.45.2/hub/frontend/src/components/Common/SidebarItems.tsx +150 -0
- calkit_python-0.45.2/hub/frontend/src/components/Common/Topbar.tsx +258 -0
- calkit_python-0.45.2/hub/frontend/src/components/Common/UserMenu.tsx +91 -0
- calkit_python-0.45.2/hub/frontend/src/components/Datasets/BrowseDatasets.tsx +225 -0
- calkit_python-0.45.2/hub/frontend/src/components/Datasets/DataEntryGrid.tsx +200 -0
- calkit_python-0.45.2/hub/frontend/src/components/Datasets/DatasetViewer.tsx +629 -0
- calkit_python-0.45.2/hub/frontend/src/components/Datasets/NewDataset.tsx +656 -0
- calkit_python-0.45.2/hub/frontend/src/components/Environments/NewEnvironment.tsx +410 -0
- calkit_python-0.45.2/hub/frontend/src/components/Environments/ViewEnvironment.tsx +138 -0
- calkit_python-0.45.2/hub/frontend/src/components/Figures/FigureEditLauncher.tsx +155 -0
- calkit_python-0.45.2/hub/frontend/src/components/Figures/FigureEditor.tsx +1107 -0
- calkit_python-0.45.2/hub/frontend/src/components/Figures/FigureFromExisting.tsx +161 -0
- calkit_python-0.45.2/hub/frontend/src/components/Figures/UploadFigure.tsx +289 -0
- calkit_python-0.45.2/hub/frontend/src/components/Files/EditFileInfo.tsx +218 -0
- calkit_python-0.45.2/hub/frontend/src/components/Files/FileEditorModal.tsx +307 -0
- calkit_python-0.45.2/hub/frontend/src/components/Files/UploadFile.tsx +146 -0
- calkit_python-0.45.2/hub/frontend/src/components/Local/AddPath.tsx +147 -0
- calkit_python-0.45.2/hub/frontend/src/components/Local/IgnorePath.tsx +142 -0
- calkit_python-0.45.2/hub/frontend/src/components/Local/NewStage.tsx +411 -0
- calkit_python-0.45.2/hub/frontend/src/components/Local/SaveFiles.tsx +182 -0
- calkit_python-0.45.2/hub/frontend/src/components/Notebooks/NotebookRunLauncher.tsx +149 -0
- calkit_python-0.45.2/hub/frontend/src/components/Notebooks/NotebookRunner.tsx +648 -0
- calkit_python-0.45.2/hub/frontend/src/components/Onboarding/AccountSetupCard.tsx +160 -0
- calkit_python-0.45.2/hub/frontend/src/components/Onboarding/ChecklistCard.tsx +232 -0
- calkit_python-0.45.2/hub/frontend/src/components/Onboarding/CommandBlock.tsx +72 -0
- calkit_python-0.45.2/hub/frontend/src/components/Onboarding/FeaturedProjects.tsx +99 -0
- calkit_python-0.45.2/hub/frontend/src/components/Onboarding/ProjectChecklist.tsx +243 -0
- calkit_python-0.45.2/hub/frontend/src/components/Onboarding/ReproAudit.test.ts +124 -0
- calkit_python-0.45.2/hub/frontend/src/components/Onboarding/ReproAudit.tsx +307 -0
- calkit_python-0.45.2/hub/frontend/src/components/Onboarding/StartPaths.tsx +145 -0
- calkit_python-0.45.2/hub/frontend/src/components/Onboarding/TipBubble.tsx +149 -0
- calkit_python-0.45.2/hub/frontend/src/components/Orgs/AddMember.tsx +113 -0
- calkit_python-0.45.2/hub/frontend/src/components/Orgs/NewOrg.tsx +149 -0
- calkit_python-0.45.2/hub/frontend/src/components/Pipeline/StageEditorModal.tsx +348 -0
- calkit_python-0.45.2/hub/frontend/src/components/Projects/CreateIssue.tsx +148 -0
- calkit_python-0.45.2/hub/frontend/src/components/Projects/EditProject.tsx +130 -0
- calkit_python-0.45.2/hub/frontend/src/components/Projects/EditQuestion.tsx +382 -0
- calkit_python-0.45.2/hub/frontend/src/components/Projects/InviteLinks.tsx +428 -0
- calkit_python-0.45.2/hub/frontend/src/components/Projects/RecentChanges.test.ts +44 -0
- calkit_python-0.45.2/hub/frontend/src/components/Projects/RecentChanges.tsx +248 -0
- calkit_python-0.45.2/hub/frontend/src/components/Publications/ImportOverleaf.test.ts +60 -0
- calkit_python-0.45.2/hub/frontend/src/components/Publications/ImportOverleaf.tsx +645 -0
- calkit_python-0.45.2/hub/frontend/src/components/Publications/LatexEditor.tsx +1101 -0
- calkit_python-0.45.2/hub/frontend/src/components/Publications/NewPublication.tsx +334 -0
- calkit_python-0.45.2/hub/frontend/src/components/Publications/PublicationComponents.test.ts +49 -0
- calkit_python-0.45.2/hub/frontend/src/components/Publications/PublicationComponents.tsx +665 -0
- calkit_python-0.45.2/hub/frontend/src/components/References/EditReferenceItemModal.tsx +267 -0
- calkit_python-0.45.2/hub/frontend/src/components/Releases/NewRelease.tsx +674 -0
- calkit_python-0.45.2/hub/frontend/src/components/Releases/PathPicker.tsx +333 -0
- calkit_python-0.45.2/hub/frontend/src/components/Releases/ReleasesTable.tsx +536 -0
- calkit_python-0.45.2/hub/frontend/src/components/Releases/ShareDialog.tsx +332 -0
- calkit_python-0.45.2/hub/frontend/src/components/UserSettings/ConnectedAccounts.tsx +349 -0
- calkit_python-0.45.2/hub/frontend/src/components/UserSettings/NewToken.tsx +162 -0
- calkit_python-0.45.2/hub/frontend/src/components/UserSettings/OnboardingChecklists.tsx +67 -0
- calkit_python-0.45.2/hub/frontend/src/components/UserSettings/PickSubscription.tsx +543 -0
- calkit_python-0.45.2/hub/frontend/src/components/UserSettings/UpdateOverleafToken.tsx +124 -0
- calkit_python-0.45.2/hub/frontend/src/components/UserSettings/UserInformation.tsx +302 -0
- calkit_python-0.45.2/hub/frontend/src/hooks/useOnboarding.ts +118 -0
- calkit_python-0.45.2/hub/frontend/src/hooks/useProject.ts +448 -0
- calkit_python-0.45.2/hub/frontend/src/hooks/useSubmitOnCmdEnter.test.ts +25 -0
- calkit_python-0.45.2/hub/frontend/src/hooks/useSubmitOnCmdEnter.ts +40 -0
- calkit_python-0.45.2/hub/frontend/src/hooks/useTips.ts +73 -0
- calkit_python-0.45.2/hub/frontend/src/lib/auth.ts +210 -0
- calkit_python-0.45.2/hub/frontend/src/lib/csv.test.ts +40 -0
- calkit_python-0.45.2/hub/frontend/src/lib/csv.ts +90 -0
- calkit_python-0.45.2/hub/frontend/src/lib/environments.test.ts +218 -0
- calkit_python-0.45.2/hub/frontend/src/lib/environments.ts +379 -0
- calkit_python-0.45.2/hub/frontend/src/lib/figureScript.test.ts +230 -0
- calkit_python-0.45.2/hub/frontend/src/lib/figureScript.ts +217 -0
- calkit_python-0.45.2/hub/frontend/src/lib/fuzzy.test.ts +75 -0
- calkit_python-0.45.2/hub/frontend/src/lib/fuzzy.ts +55 -0
- calkit_python-0.45.2/hub/frontend/src/lib/google.ts +55 -0
- calkit_python-0.45.2/hub/frontend/src/lib/latexCompiler.ts +300 -0
- calkit_python-0.45.2/hub/frontend/src/lib/latexProject.test.ts +125 -0
- calkit_python-0.45.2/hub/frontend/src/lib/latexProject.ts +402 -0
- calkit_python-0.45.2/hub/frontend/src/lib/notebook.test.ts +102 -0
- calkit_python-0.45.2/hub/frontend/src/lib/notebook.ts +140 -0
- calkit_python-0.45.2/hub/frontend/src/lib/onboarding.test.ts +328 -0
- calkit_python-0.45.2/hub/frontend/src/lib/onboarding.ts +286 -0
- calkit_python-0.45.2/hub/frontend/src/lib/projectFiles.ts +131 -0
- calkit_python-0.45.2/hub/frontend/src/lib/provenance.test.ts +248 -0
- calkit_python-0.45.2/hub/frontend/src/lib/provenance.ts +367 -0
- calkit_python-0.45.2/hub/frontend/src/lib/pyodide.test.ts +28 -0
- calkit_python-0.45.2/hub/frontend/src/lib/pyodide.ts +529 -0
- calkit_python-0.45.2/hub/frontend/src/lib/tips.test.ts +34 -0
- calkit_python-0.45.2/hub/frontend/src/lib/tips.ts +92 -0
- calkit_python-0.45.2/hub/frontend/src/routeTree.gen.ts +1027 -0
- calkit_python-0.45.2/hub/frontend/src/routes/__root.tsx +40 -0
- calkit_python-0.45.2/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/apps.tsx +107 -0
- calkit_python-0.45.2/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/datasets.tsx +513 -0
- calkit_python-0.45.2/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/environments.tsx +235 -0
- calkit_python-0.45.2/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/figures.tsx +630 -0
- calkit_python-0.45.2/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/files.tsx +638 -0
- calkit_python-0.45.2/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/history.tsx +727 -0
- calkit_python-0.45.2/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/index.tsx +924 -0
- calkit_python-0.45.2/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/notebooks.tsx +331 -0
- calkit_python-0.45.2/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/presentations.tsx +382 -0
- calkit_python-0.45.2/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/publications.tsx +751 -0
- calkit_python-0.45.2/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/software.tsx +79 -0
- calkit_python-0.45.2/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/tables.tsx +367 -0
- calkit_python-0.45.2/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout.tsx +672 -0
- calkit_python-0.45.2/hub/frontend/src/routes/_layout/admin.tsx +380 -0
- calkit_python-0.45.2/hub/frontend/src/routes/_layout/datasets.tsx +206 -0
- calkit_python-0.45.2/hub/frontend/src/routes/_layout/index.tsx +382 -0
- calkit_python-0.45.2/hub/frontend/src/routes/_layout/new.tsx +1516 -0
- calkit_python-0.45.2/hub/frontend/src/routes/_layout/projects.tsx +192 -0
- calkit_python-0.45.2/hub/frontend/src/routes/_layout/settings.tsx +110 -0
- calkit_python-0.45.2/hub/frontend/src/routes/login/index.tsx +200 -0
- calkit_python-0.45.2/hub/frontend/src/routes/signup.tsx +164 -0
- calkit_python-0.45.2/hub/frontend/src/routes/verify-email.tsx +116 -0
- calkit_python-0.45.2/mkdocs.yml +117 -0
- calkit_python-0.45.2/scripts/install.ps1 +26 -0
- calkit_python-0.45.2/scripts/install.sh +35 -0
- calkit_python-0.45.2/uv.lock +9813 -0
- calkit_python-0.45.2/vscode-ext/schemas/calkit.json +8312 -0
- calkit_python-0.45.2/vscode-ext/src/extension.ts +8273 -0
- calkit_python-0.45.2/vscode-ext/src/test/yaml.test.ts +54 -0
- calkit_python-0.45.2/vscode-ext/src/yaml.ts +47 -0
- calkit_python-0.45.0/AGENTS.md +0 -59
- calkit_python-0.45.0/PKG-INFO +0 -411
- calkit_python-0.45.0/calkit/__init__.py +0 -129
- calkit_python-0.45.0/calkit/check.py +0 -248
- calkit_python-0.45.0/calkit/cli/check.py +0 -1542
- calkit_python-0.45.0/calkit/cli/import_.py +0 -511
- calkit_python-0.45.0/calkit/cli/list.py +0 -461
- calkit_python-0.45.0/calkit/cli/main/core.py +0 -3950
- calkit_python-0.45.0/calkit/cli/new.py +0 -4070
- calkit_python-0.45.0/calkit/cli/update.py +0 -1289
- calkit_python-0.45.0/calkit/core.py +0 -1379
- calkit_python-0.45.0/calkit/dvc/core.py +0 -956
- calkit_python-0.45.0/calkit/models/core.py +0 -1209
- calkit_python-0.45.0/calkit/models/pipeline.py +0 -2068
- calkit_python-0.45.0/calkit/notebooks.py +0 -275
- calkit_python-0.45.0/calkit/templates/core.py +0 -119
- calkit_python-0.45.0/calkit/tests/cli/main/test_core.py +0 -2442
- calkit_python-0.45.0/calkit/tests/cli/main/test_subprojects.py +0 -428
- calkit_python-0.45.0/calkit/tests/cli/test_list.py +0 -248
- calkit_python-0.45.0/calkit/tests/cli/test_new.py +0 -1852
- calkit_python-0.45.0/calkit/tests/cli/test_update.py +0 -338
- calkit_python-0.45.0/calkit/tests/dvc/test_core.py +0 -489
- calkit_python-0.45.0/calkit/tests/test_check.py +0 -54
- calkit_python-0.45.0/docs/calkit-yaml.md +0 -550
- calkit_python-0.45.0/docs/cli-reference.md +0 -3711
- calkit_python-0.45.0/docs/datasets.md +0 -31
- calkit_python-0.45.0/docs/examples.md +0 -102
- calkit_python-0.45.0/docs/latex.md +0 -194
- calkit_python-0.45.0/docs/schemas/calkit.json +0 -7792
- calkit_python-0.45.0/docs/tutorials/procedures.md +0 -110
- calkit_python-0.45.0/hub/.env.example +0 -97
- calkit_python-0.45.0/hub/AGENTS.md +0 -208
- calkit_python-0.45.0/hub/backend/app/api/deps.py +0 -242
- calkit_python-0.45.0/hub/backend/app/api/main.py +0 -26
- calkit_python-0.45.0/hub/backend/app/api/routes/feature_votes.py +0 -95
- calkit_python-0.45.0/hub/backend/app/api/routes/login.py +0 -789
- calkit_python-0.45.0/hub/backend/app/api/routes/misc.py +0 -506
- calkit_python-0.45.0/hub/backend/app/api/routes/projects/__init__.py +0 -17
- calkit_python-0.45.0/hub/backend/app/api/routes/projects/core.py +0 -8942
- calkit_python-0.45.0/hub/backend/app/api/routes/projects/dvc.py +0 -163
- calkit_python-0.45.0/hub/backend/app/api/routes/users.py +0 -865
- calkit_python-0.45.0/hub/backend/app/config.py +0 -266
- calkit_python-0.45.0/hub/backend/app/dvc.py +0 -383
- calkit_python-0.45.0/hub/backend/app/git.py +0 -1568
- calkit_python-0.45.0/hub/backend/app/github.py +0 -142
- calkit_python-0.45.0/hub/backend/app/messaging.py +0 -155
- calkit_python-0.45.0/hub/backend/app/mixpanel.py +0 -126
- calkit_python-0.45.0/hub/backend/app/models/core.py +0 -1339
- calkit_python-0.45.0/hub/backend/app/pipeline.py +0 -749
- calkit_python-0.45.0/hub/backend/app/projects.py +0 -1458
- calkit_python-0.45.0/hub/backend/app/security.py +0 -124
- calkit_python-0.45.0/hub/backend/app/tests/api/routes/projects/test_core.py +0 -3546
- calkit_python-0.45.0/hub/backend/app/tests/api/routes/projects/test_dvc.py +0 -260
- calkit_python-0.45.0/hub/backend/app/tests/api/routes/test_feature_votes.py +0 -72
- calkit_python-0.45.0/hub/backend/app/tests/api/routes/test_login.py +0 -435
- calkit_python-0.45.0/hub/backend/app/tests/api/routes/test_misc.py +0 -86
- calkit_python-0.45.0/hub/backend/app/tests/api/routes/test_users.py +0 -613
- calkit_python-0.45.0/hub/backend/app/tests/test_core.py +0 -21
- calkit_python-0.45.0/hub/backend/app/tests/test_pipeline.py +0 -897
- calkit_python-0.45.0/hub/backend/app/tests/test_projects.py +0 -736
- calkit_python-0.45.0/hub/backend/app/users.py +0 -779
- calkit_python-0.45.0/hub/backend/pyproject.toml +0 -103
- calkit_python-0.45.0/hub/docker-compose.yml +0 -430
- calkit_python-0.45.0/hub/frontend/openapi-ts.config.ts +0 -29
- calkit_python-0.45.0/hub/frontend/public/tex/busytex_pipeline.js +0 -750
- calkit_python-0.45.0/hub/frontend/src/client/index.ts +0 -1090
- calkit_python-0.45.0/hub/frontend/src/client/schemas.gen.ts +0 -9694
- calkit_python-0.45.0/hub/frontend/src/client/sdk.gen.ts +0 -7829
- calkit_python-0.45.0/hub/frontend/src/client/types.gen.ts +0 -12243
- calkit_python-0.45.0/hub/frontend/src/components/Admin/AddUser.tsx +0 -189
- calkit_python-0.45.0/hub/frontend/src/components/Admin/EditUser.tsx +0 -179
- calkit_python-0.45.0/hub/frontend/src/components/Common/ArtifactCompareModal.tsx +0 -1059
- calkit_python-0.45.0/hub/frontend/src/components/Common/ClearableInput.tsx +0 -58
- calkit_python-0.45.0/hub/frontend/src/components/Common/CodeEditorPane.tsx +0 -166
- calkit_python-0.45.0/hub/frontend/src/components/Common/CommentsPanel.tsx +0 -450
- calkit_python-0.45.0/hub/frontend/src/components/Common/GlobalSearch.tsx +0 -308
- calkit_python-0.45.0/hub/frontend/src/components/Common/NotBuiltAlert.tsx +0 -83
- calkit_python-0.45.0/hub/frontend/src/components/Common/PdfDocumentViewer.tsx +0 -1212
- calkit_python-0.45.0/hub/frontend/src/components/Common/SidebarItems.tsx +0 -146
- calkit_python-0.45.0/hub/frontend/src/components/Common/Topbar.tsx +0 -228
- calkit_python-0.45.0/hub/frontend/src/components/Common/UserMenu.tsx +0 -75
- calkit_python-0.45.0/hub/frontend/src/components/Datasets/DatasetFromExisting.tsx +0 -157
- calkit_python-0.45.0/hub/frontend/src/components/Datasets/UploadDataset.tsx +0 -177
- calkit_python-0.45.0/hub/frontend/src/components/Environments/ViewEnvironment.tsx +0 -58
- calkit_python-0.45.0/hub/frontend/src/components/Figures/FigureFromExisting.tsx +0 -159
- calkit_python-0.45.0/hub/frontend/src/components/Figures/UploadFigure.tsx +0 -176
- calkit_python-0.45.0/hub/frontend/src/components/Files/EditFileInfo.tsx +0 -216
- calkit_python-0.45.0/hub/frontend/src/components/Files/FileEditorModal.tsx +0 -298
- calkit_python-0.45.0/hub/frontend/src/components/Files/UploadFile.tsx +0 -145
- calkit_python-0.45.0/hub/frontend/src/components/Local/AddPath.tsx +0 -146
- calkit_python-0.45.0/hub/frontend/src/components/Local/IgnorePath.tsx +0 -141
- calkit_python-0.45.0/hub/frontend/src/components/Local/NewStage.tsx +0 -403
- calkit_python-0.45.0/hub/frontend/src/components/Local/SaveFiles.tsx +0 -181
- calkit_python-0.45.0/hub/frontend/src/components/Orgs/AddMember.tsx +0 -112
- calkit_python-0.45.0/hub/frontend/src/components/Orgs/NewOrg.tsx +0 -148
- calkit_python-0.45.0/hub/frontend/src/components/Pipeline/StageEditorModal.tsx +0 -339
- calkit_python-0.45.0/hub/frontend/src/components/Projects/CreateIssue.tsx +0 -147
- calkit_python-0.45.0/hub/frontend/src/components/Projects/EditProject.tsx +0 -128
- calkit_python-0.45.0/hub/frontend/src/components/Projects/EditQuestion.tsx +0 -380
- calkit_python-0.45.0/hub/frontend/src/components/Projects/InviteLinks.tsx +0 -426
- calkit_python-0.45.0/hub/frontend/src/components/Publications/ImportOverleaf.tsx +0 -426
- calkit_python-0.45.0/hub/frontend/src/components/Publications/LatexEditor.tsx +0 -880
- calkit_python-0.45.0/hub/frontend/src/components/Publications/NewPublication.tsx +0 -294
- calkit_python-0.45.0/hub/frontend/src/components/References/EditReferenceItemModal.tsx +0 -263
- calkit_python-0.45.0/hub/frontend/src/components/Releases/NewRelease.tsx +0 -669
- calkit_python-0.45.0/hub/frontend/src/components/Releases/PathPicker.tsx +0 -326
- calkit_python-0.45.0/hub/frontend/src/components/Releases/ReleasesTable.tsx +0 -533
- calkit_python-0.45.0/hub/frontend/src/components/Releases/ShareDialog.tsx +0 -330
- calkit_python-0.45.0/hub/frontend/src/components/UserSettings/ConnectedAccounts.tsx +0 -348
- calkit_python-0.45.0/hub/frontend/src/components/UserSettings/NewToken.tsx +0 -160
- calkit_python-0.45.0/hub/frontend/src/components/UserSettings/PickSubscription.tsx +0 -541
- calkit_python-0.45.0/hub/frontend/src/components/UserSettings/UpdateOverleafToken.tsx +0 -123
- calkit_python-0.45.0/hub/frontend/src/components/UserSettings/UserInformation.tsx +0 -157
- calkit_python-0.45.0/hub/frontend/src/hooks/useProject.ts +0 -447
- calkit_python-0.45.0/hub/frontend/src/lib/auth.ts +0 -204
- calkit_python-0.45.0/hub/frontend/src/lib/google.ts +0 -39
- calkit_python-0.45.0/hub/frontend/src/lib/latexCompiler.ts +0 -300
- calkit_python-0.45.0/hub/frontend/src/lib/latexProject.test.ts +0 -93
- calkit_python-0.45.0/hub/frontend/src/lib/latexProject.ts +0 -359
- calkit_python-0.45.0/hub/frontend/src/routeTree.gen.ts +0 -1006
- calkit_python-0.45.0/hub/frontend/src/routes/__root.tsx +0 -34
- calkit_python-0.45.0/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/apps.tsx +0 -124
- calkit_python-0.45.0/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/datasets.tsx +0 -139
- calkit_python-0.45.0/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/environments.tsx +0 -194
- calkit_python-0.45.0/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/figures.tsx +0 -580
- calkit_python-0.45.0/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/files.tsx +0 -546
- calkit_python-0.45.0/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/history.tsx +0 -718
- calkit_python-0.45.0/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/index.tsx +0 -944
- calkit_python-0.45.0/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/notebooks.tsx +0 -295
- calkit_python-0.45.0/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/presentations.tsx +0 -378
- calkit_python-0.45.0/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/publications.tsx +0 -644
- calkit_python-0.45.0/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/software.tsx +0 -88
- calkit_python-0.45.0/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/tables.tsx +0 -366
- calkit_python-0.45.0/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout.tsx +0 -580
- calkit_python-0.45.0/hub/frontend/src/routes/_layout/admin.tsx +0 -185
- calkit_python-0.45.0/hub/frontend/src/routes/_layout/datasets.tsx +0 -203
- calkit_python-0.45.0/hub/frontend/src/routes/_layout/index.tsx +0 -288
- calkit_python-0.45.0/hub/frontend/src/routes/_layout/learn.tsx +0 -82
- calkit_python-0.45.0/hub/frontend/src/routes/_layout/projects.tsx +0 -183
- calkit_python-0.45.0/hub/frontend/src/routes/_layout/settings.tsx +0 -101
- calkit_python-0.45.0/hub/frontend/src/routes/login/index.tsx +0 -249
- calkit_python-0.45.0/hub/frontend/src/routes/signup.tsx +0 -180
- calkit_python-0.45.0/mkdocs.yml +0 -116
- calkit_python-0.45.0/scripts/install.ps1 +0 -11
- calkit_python-0.45.0/scripts/install.sh +0 -32
- calkit_python-0.45.0/uv.lock +0 -9750
- calkit_python-0.45.0/vscode-ext/schemas/calkit.json +0 -7792
- calkit_python-0.45.0/vscode-ext/src/extension.ts +0 -8174
- {calkit_python-0.45.0 → calkit_python-0.45.2}/.claude-plugin/marketplace.json +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/.dockerignore +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/.gitattributes +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/.gitignore +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/.gitmodules +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/.pre-commit-config.yaml +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/.prettierignore +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/.prettierrc.json +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/.python-version +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/.vscode/launch.json +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/.vscode/tasks.json +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/CITATION.cff +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/CODE_OF_CONDUCT.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/CONTRIBUTING.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/LICENSE +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/Makefile +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/README.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/actions/run/README.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/actions/run/action.yml +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/actions/run/example.yml +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/agent-plugin/.claude-plugin/plugin.json +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/agent-plugin/skills/add-pipeline-stage/SKILL.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/agent-plugin/skills/conventions/SKILL.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/agent-plugin/skills/create-pipeline/SKILL.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/browser-ext/.gitignore +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/browser-ext/README.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/browser-ext/options.html +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/browser-ext/package-lock.json +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/browser-ext/package.json +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/browser-ext/popup.html +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/browser-ext/public/icons/calkit-128.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/browser-ext/public/icons/calkit-16.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/browser-ext/public/icons/calkit-32.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/browser-ext/public/icons/calkit-48.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/browser-ext/public/icons/calkit.svg +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/browser-ext/public/manifest.json +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/browser-ext/scripts/build-content.mjs +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/browser-ext/scripts/package-manifest.mjs +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/browser-ext/scripts/store-screenshots.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/browser-ext/scripts/watch.mjs +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/browser-ext/src/background/index.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/browser-ext/src/content/github.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/browser-ext/src/content/overleaf.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/browser-ext/src/content/references.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/browser-ext/src/core/api.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/browser-ext/src/core/auth.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/browser-ext/src/core/calkit-yaml.test.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/browser-ext/src/core/calkit-yaml.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/browser-ext/src/core/detect.test.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/browser-ext/src/core/detect.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/browser-ext/src/core/hub-url.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/browser-ext/src/core/hubs.test.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/browser-ext/src/core/hubs.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/browser-ext/src/core/latex.test.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/browser-ext/src/core/latex.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/browser-ext/src/core/lifecycle.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/browser-ext/src/core/messages.test.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/browser-ext/src/core/messages.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/browser-ext/src/core/pickers.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/browser-ext/src/core/storage.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/browser-ext/src/core/types.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/browser-ext/src/core/ui.test.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/browser-ext/src/core/ui.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/browser-ext/src/options/options.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/browser-ext/src/popup/popup.css +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/browser-ext/src/popup/popup.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/browser-ext/src/viewer/viewer.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/browser-ext/tsconfig.json +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/browser-ext/viewer.html +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/browser-ext/vite.config.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/browser-ext/vite.content.config.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/browser-ext/vitest.config.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/__main__.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/calc.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/cli/__init__.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/cli/config.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/cli/core.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/cli/delete.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/cli/describe.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/cli/dev.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/cli/hub.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/cli/latex.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/cli/main/__init__.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/cli/main/xr.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/cli/notebooks.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/cli/office.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/cli/overleaf.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/cli/scheduler.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/cli/sync.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/conda.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/config.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/datasets.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/dependencies.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/detect.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/docker.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/dvc/__init__.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/dvc/zip.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/environments.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/fs.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/git.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/github.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/gui.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/hub.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/install.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/invenio.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/julia.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/jupyter.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/jupyterlab/__init__.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/jupyterlab/routes.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/labextension/package.json +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/labextension/schemas/calkit/package.json.orig +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/labextension/schemas/calkit/plugin.json +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/labextension/static/502.9a2c5772a15466e923ef.js +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/labextension/static/695.2c41003a452d43d2b358.js +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/labextension/static/867.a42a046aa5108f54f8fb.js +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/labextension/static/909.6d8285ce7c45878ac508.js +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/labextension/static/946.050af2abf7845cfbdbd2.js +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/labextension/static/946.050af2abf7845cfbdbd2.js.LICENSE.txt +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/labextension/static/b2f1c3efe70cb539d121.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/labextension/static/remoteEntry.d7a43c7948f690d37d19.js +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/labextension/static/style.js +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/labextension/static/third-party-licenses.json +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/latex.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/licenses.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/magics.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/markdown.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/matlab.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/models/__init__.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/models/io.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/models/iteration.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/office.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/ops.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/overleaf.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/pipeline.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/releases.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/resources/README.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/resources/__init__.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/resources/devcontainer/Dockerfile +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/resources/devcontainer/README.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/resources/devcontainer/base.json +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/resources/devcontainer/devcontainer.json +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/resources/devcontainer/scripts/check-envs.sh +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/resources/devcontainer/scripts/post-create.sh +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/resources/devcontainer/scripts/post-start.sh +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/resources/devcontainer/scripts/update-content.sh +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/resources/github-actions/example.yml +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/resources/vscode/README.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/resources/vscode/extensions.json +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/resources/vscode/settings.json +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/schema.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/server.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/templates/__init__.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/templates/latex/__init__.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/templates/latex/article/paper.tex +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/templates/latex/core.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/templates/latex/jfm/jfm.bst +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/templates/latex/jfm/jfm.cls +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/templates/latex/jfm/lineno-FLM.sty +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/templates/latex/jfm/paper.tex +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/templates/latex/jfm/upmath.sty +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/tests/__init__.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/tests/cli/__init__.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/tests/cli/main/__init__.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/tests/cli/main/test_lock.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/tests/cli/main/test_xr.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/tests/cli/test_check.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/tests/cli/test_config.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/tests/cli/test_core.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/tests/cli/test_delete.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/tests/cli/test_describe.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/tests/cli/test_hub.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/tests/cli/test_import.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/tests/cli/test_latex.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/tests/cli/test_notebooks.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/tests/cli/test_overleaf.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/tests/cli/test_scheduler.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/tests/cli/test_sync.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/tests/dvc/__init__.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/tests/dvc/test_zip.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/tests/jupyterlab/__init__.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/tests/jupyterlab/conftest.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/tests/jupyterlab/test_routes.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/tests/models/__init__.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/tests/models/test_core.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/tests/models/test_iteration.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/tests/models/test_pipeline.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/tests/test_calc.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/tests/test_conda.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/tests/test_config.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/tests/test_core.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/tests/test_dependencies.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/tests/test_detect.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/tests/test_docker.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/tests/test_docs_references.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/tests/test_environments.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/tests/test_fs.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/tests/test_git.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/tests/test_hub.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/tests/test_install.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/tests/test_invenio.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/tests/test_julia.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/tests/test_jupyter.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/tests/test_keyring_windows.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/tests/test_licenses.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/tests/test_magics.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/tests/test_markdown.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/tests/test_matlab.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/tests/test_notebooks.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/tests/test_overleaf.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/tests/test_pipeline.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/tests/test_releases.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/tests/test_resources.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/tests/test_schema.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/tests/test_templates.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/tests/test_workspace.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/calkit/workspace.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/CNAME +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/acknowledgements.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/ai-tools.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/apps.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/browser-ext/index.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/browser-ext/privacy.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/calculations.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/cloud-integration.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/environments.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/governance.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/help.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/hpc.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/hub/index.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/hub/self-hosting.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/img/c-to-the-k-white.svg +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/img/calkit-fragmentation-compendium.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/img/calkit-no-bg.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/img/caltech.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/img/connect-zenodo.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/img/jupyterlab/all-green.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/img/jupyterlab/collect-data-stale.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/img/jupyterlab/new-env.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/img/jupyterlab/new-notebook.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/img/jupyterlab/pipeline-badge.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/img/jupyterlab-params.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/img/pipeline.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/img/plos-osi-code-2024-03.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/img/schmidt-sciences.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/img/vscode-nb-params.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/index.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/installation.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/jupyterlab.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/local-server.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/notebooks.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/overleaf.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/pipeline/index.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/pipeline/manual-steps.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/pipeline/markdown.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/pipeline/running-and-logging.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/questions.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/quickstart.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/references.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/releases.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/reproducibility.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/requirements.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/subprojects.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/adding-latex-pub-docker.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/ai-agents.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/conda-envs.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/existing-project.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/first-project.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/github-actions.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/img/actions-repo-secrets.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/img/latex-codespaces/building-codespace.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/img/latex-codespaces/codespaces-secrets-2.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/img/latex-codespaces/editor-split.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/img/latex-codespaces/go-to-linked-code.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/img/latex-codespaces/issue-from-selection.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/img/latex-codespaces/new-project.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/img/latex-codespaces/new-pub-2.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/img/latex-codespaces/new-token.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/img/latex-codespaces/paper.tex.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/img/latex-codespaces/project-home-3.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/img/latex-codespaces/push.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/img/latex-codespaces/stage.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/img/office/anakin-excel.jpg +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/img/office/chart-more-rows.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/img/office/create-project.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/img/office/elsevier-research-data-guidelines.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/img/office/excel-chart.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/img/office/excel-data.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/img/office/insert-link-to-file.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/img/office/needs-clone.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/img/office/new-stage.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/img/office/phd-comics-version-control.webp +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/img/office/pipeline-out-of-date.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/img/office/status-more-rows.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/img/office/uncommitted-changes.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/img/office/untracked-data.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/img/office/updated-publication.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/img/office/word-to-pdf-stage-2.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/img/office/workflow-page.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/img/openfoam/clone.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/img/openfoam/create-project.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/img/openfoam/datasets-page.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/img/openfoam/figure-on-website-updated.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/img/openfoam/figure-on-website.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/img/openfoam/new-token.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/img/openfoam/reclone.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/img/openfoam/status-after-import-dataset.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/img/quick-actions.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/img/run-proc.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/img/vscode-slurm-notebook/create-calkit-env.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/img/vscode-slurm-notebook/create-inner-env.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/img/vscode-slurm-notebook/create-new-calkit-env.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/img/vscode-slurm-notebook/select-calkit-env.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/img/vscode-slurm-notebook/slurm-job-running.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/img/vscode-slurm-notebook/slurm-launch-options.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/img/vscode-slurm-notebook/starting-slurm-job.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/index.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/jupyterlab.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/latex-codespaces.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/matlab.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/notebook-pipeline.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/office.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/openfoam.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/runnable-readme.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/tutorials/vscode-slurm-notebook.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/docs/version-control.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/examples/markdown/.calkit/envs/jl/Manifest.toml +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/examples/markdown/.calkit/envs/jl/Project.toml +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/examples/markdown/.calkit/envs/py/.python-version +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/examples/markdown/.calkit/envs/py/pyproject.toml +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/examples/markdown/.calkit/envs/py/uv.lock +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/examples/markdown/.calkit/envs/r/.Rbuildignore +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/examples/markdown/.calkit/envs/r/.Rprofile +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/examples/markdown/.calkit/envs/r/DESCRIPTION +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/examples/markdown/.calkit/envs/r/renv/.gitignore +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/examples/markdown/.calkit/envs/r/renv/activate.R +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/examples/markdown/.calkit/envs/r/renv/settings.json +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/examples/markdown/.calkit/envs/r/renv.lock +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/examples/markdown/.dvc/.gitignore +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/examples/markdown/.dvc/config +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/examples/markdown/.dvcignore +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/examples/markdown/.gitignore +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/examples/markdown/README.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/examples/markdown/calkit.yaml +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/examples/markdown/data/data.csv +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/examples/markdown/data/data2.csv +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/examples/markdown/dvc.lock +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/examples/markdown/dvc.yaml +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/examples/markdown/figures/data2.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/examples/markdown/figures/figure.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/examples/markdown/results/fit.json +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/examples/markdown-python/.dvc/.gitignore +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/examples/markdown-python/.dvc/config +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/examples/markdown-python/.dvcignore +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/examples/markdown-python/.gitignore +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/examples/markdown-python/.python-version +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/examples/markdown-python/README.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/examples/markdown-python/calkit.yaml +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/examples/markdown-python/dvc.lock +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/examples/markdown-python/dvc.yaml +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/examples/markdown-python/figures/waves.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/examples/markdown-python/pyproject.toml +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/examples/markdown-python/src/wavetools/__init__.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/examples/markdown-python/uv.lock +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/flake.lock +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/flake.nix +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/.gitattributes +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/.gitignore +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/.vscode/launch.json +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/LICENSE +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/Makefile +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/README.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/.gitignore +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/.python-version +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/Dockerfile +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/Makefile +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/README.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/alembic.ini +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/__init__.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/alembic/README +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/alembic/env.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/alembic/script.py.mako +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/alembic/versions/.keep +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/alembic/versions/07c8236476c4_add_fields_to_usertoken.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/alembic/versions/10a05eaedfbd_add_dataset_table.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/alembic/versions/1546aa334cd5_make_project_description_nullable.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/alembic/versions/1a31ce608336_add_cascade_delete_relationships.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/alembic/versions/1fb6e38eb0e9_add_deviceauth_table.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/alembic/versions/208e7457f3ba_add_title_to_project.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/alembic/versions/2e7c25a00842_add_is_public_to_project.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/alembic/versions/38e178698db2_update_subscription_model_to_use_plan_.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/alembic/versions/3b1e67e9c318_add_usertoken_table.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/alembic/versions/4dac15c0282a_add_stripe_customer_id_to_user.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/alembic/versions/4e1c917fcca4_add_status_columns_to_project_table.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/alembic/versions/5ba89308431f_add_project_table.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/alembic/versions/5d6f8217c890_add_subscriber_user_id_to_org_.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/alembic/versions/65b2d15cc702_add_github_username_field_to_user.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/alembic/versions/697c3c1a8a27_add_git_repo_url_to_project.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/alembic/versions/6f3a3afbea8b_add_number_field_to_question.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/alembic/versions/7076d9b5c887_use_account_for_project_owner.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/alembic/versions/71e1d1e69bbd_add_table_for_storing_user_github_tokens.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/alembic/versions/799476973bce_add_created_ts_to_user_github_token_.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/alembic/versions/7cacee34034c_add_parent_child_relationship_to_.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/alembic/versions/9c0a54914c78_add_max_length_for_string_varchar_.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/alembic/versions/9c4f70636d73_add_fields_to_usertoken.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/alembic/versions/a333fc5aa994_index_project_folders_synced_with_.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/alembic/versions/a4af19842927_create_table_to_store_user_zenodo_tokens.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/alembic/versions/ab7816be480b_drop_items.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/alembic/versions/ac622559475f_save_timestamps_for_github_token_.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/alembic/versions/af024967630d_lowercase_account_names.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/alembic/versions/c1f9a3e27d48_consolidate_comment_tables.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/alembic/versions/c46a78ba506c_add_created_column_to_account.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/alembic/versions/c749b39072d3_add_figurecomment.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/alembic/versions/c7c41c3f0d22_add_user_external_credential_table.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/alembic/versions/d01ce914143d_make_question_a_table.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/alembic/versions/d21ed1c9537e_add_zenodo_user_id_column_to_user.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/alembic/versions/d3a8021fb433_add_table_for_user_project_access.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/alembic/versions/d4e5f6a7b8c9_ghless_membership_and_invitations.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/alembic/versions/d6366015af35_add_discount_code_table.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/alembic/versions/d98dd8ec85a3_edit_replace_id_integers_in_all_models_.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/alembic/versions/dcef842dee10_add_refreshtoken_table.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/alembic/versions/e1b0fa2a6d34_backfill_external_credentials_from_legacy_.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/alembic/versions/e2412789c190_initialize_models.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/alembic/versions/e7671197c00b_add_account_table.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/alembic/versions/ed74edb0a9e6_create_table_for_user_overleaf_token.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/alembic/versions/edcabfca98df_add_subscription_and_org_membership_.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/alembic/versions/f0e23e048b1b_add_fields_to_project.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/alembic/versions/f3a9c1b7e240_add_releases_feature.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/alembic/versions/f5ad6445ad03_enable_user_project_access_to_be_null.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/alembic/versions/f74a96172dbd_add_table_for_locking_project_files.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/api/__init__.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/api/routes/__init__.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/api/routes/accounts.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/api/routes/datasets.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/api/routes/orgs.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/api/routes/projects/fs.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/api/routes/projects/releases.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/api/routes/references.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/arxiv.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/client.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/core.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/db.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/email-templates/build/new_account.html +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/email-templates/build/project_invitation.html +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/email-templates/build/release_share.html +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/email-templates/build/reset_password.html +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/email-templates/build/test_email.html +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/email-templates/src/new_account.mjml +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/email-templates/src/project_invitation.mjml +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/email-templates/src/release_share.mjml +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/email-templates/src/reset_password.mjml +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/email-templates/src/test_email.mjml +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/main.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/models/__init__.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/models/projects.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/models/releases.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/orgs.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/pdftext.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/storage.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/stripe.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/subscriptions.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/tests/__init__.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/tests/api/__init__.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/tests/api/routes/__init__.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/tests/api/routes/projects/__init__.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/tests/api/routes/projects/test_fs.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/tests/api/routes/projects/test_overleaf_links.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/tests/api/routes/test_releases.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/tests/conftest.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/tests/test_arxiv.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/tests/test_client.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/tests/test_db.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/tests/test_dvc.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/tests/test_git.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/tests/test_pdftext.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/tests/test_users.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/tests/test_version.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/version.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/zenodo.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/app/zotero.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/prestart.sh +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/scripts/backend-pre-start.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/scripts/create-initial-data.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/scripts/format.sh +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/scripts/generate-client.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/scripts/lint.sh +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/scripts/rotate-fernet-secrets.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/scripts/test.sh +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/backend/tests-start.sh +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/config/alloy/config.alloy +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/config/grafana/provisioning/dashboards/dashboards.yml +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/config/grafana/provisioning/dashboards/fastapi.json +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/config/grafana/provisioning/datasources/datasources.yml +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/config/loki/loki.yml +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/config/prometheus/prometheus.yml +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/docker-compose.override.yml +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/docker-compose.traefik.yml +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/docs/dev/database-migrations.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/docs/dev/deployment.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/docs/dev/development.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/.dockerignore +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/.gitignore +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/.nvmrc +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/Dockerfile +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/Makefile +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/README.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/biome.json +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/index.html +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/modify-openapi-operationids.js +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/nginx-backend-not-found.conf +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/nginx.conf +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/package-lock.json +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/package.json +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/playwright.config.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/public/assets/images/c-to-the-k.svg +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/public/assets/images/calkit-no-bg.svg +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/public/assets/images/calkit.svg +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/public/assets/images/fastapi-logo.svg +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/public/assets/images/favicon.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/public/assets/images/kdot.svg +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/public/tex/.gitignore +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/public/tex/LICENSE-busytex +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/public/tex/busytex.js +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/public/tex/busytex.wasm +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/public/tex/busytex_worker.js +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/scripts/download-tex-engine.sh +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/client/client/client.gen.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/client/client/index.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/client/client/types.gen.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/client/client/utils.gen.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/client/client.gen.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/client/core/auth.gen.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/client/core/bodySerializer.gen.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/client/core/params.gen.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/client/core/pathSerializer.gen.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/client/core/queryKeySerializer.gen.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/client/core/serverSentEvents.gen.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/client/core/types.gen.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/client/core/utils.gen.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/components/Common/ActionsMenu.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/components/Common/ConnectGitHubPrompt.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/components/Common/ConnectZoteroPrompt.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/components/Common/DeleteAlert.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/components/Common/LoadingSpinner.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/components/Common/Markdown.test.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/components/Common/Markdown.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/components/Common/Mermaid.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/components/Common/Navbar.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/components/Common/NotFound.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/components/Common/NotificationBell.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/components/Common/PageMenu.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/components/Common/PdfCanvas.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/components/Common/ProjectCommandPalette.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/components/Common/RefPicker.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/components/Common/Sidebar.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/components/Common/Tooltip.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/components/Figures/FigureView.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/components/Files/FileContent.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/components/Files/SelectedItemInfo.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/components/Local/DiscardChanges.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/components/Notebooks/NotebookView.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/components/Presentations/PresentationView.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/components/Projects/AddCollaborator.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/components/Projects/CloneProject.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/components/Projects/CreateQuestion.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/components/Projects/HelpContent.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/components/Projects/MakeProjectPublic.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/components/Projects/NewProject.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/components/Projects/ProjectShowcase.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/components/Projects/ProjectStatus.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/components/Publications/PdfAnnotator.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/components/Publications/PublicationView.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/components/References/DeleteReferenceItemDialog.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/components/References/DeleteReferencesCollectionDialog.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/components/References/FileViewModal.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/components/References/ImportFromZoteroModal.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/components/References/LabelExistingReferences.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/components/References/NewReferencesCollection.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/components/References/ReferenceItemModal.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/components/References/ReferencesInfoPanel.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/components/Releases/ArtifactReleasesPanel.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/components/Releases/ReleasePdfAnnotator.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/components/Releases/ReleaseViewer.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/components/Releases/releaseSort.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/components/Tables/TableThumbnail.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/components/Tables/TableView.test.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/components/Tables/TableView.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/components/UserSettings/Appearance.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/components/UserSettings/ChangePassword.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/components/UserSettings/DeleteAccount.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/components/UserSettings/DeleteConfirmation.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/components/UserSettings/Subscription.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/components/UserSettings/UserTokens.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/hooks/useAuth.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/hooks/useCustomToast.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/lib/analytics.test.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/lib/analytics.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/lib/api.test.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/lib/api.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/lib/auth.test.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/lib/bibtex.test.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/lib/bibtex.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/lib/core.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/lib/errors.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/lib/github.test.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/lib/github.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/lib/keyboard.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/lib/latexProject.mapPaths.test.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/lib/layout.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/lib/pipelineYaml.test.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/lib/pipelineYaml.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/lib/releases.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/lib/staleChunks.test.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/lib/staleChunks.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/lib/strings.test.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/lib/strings.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/lib/tables.test.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/lib/tables.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/lib/zenodo.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/lib/zotero.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/main.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/app.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/apps/$appName.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/apps/index.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/collaborators.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/local.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/pipeline.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/references.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/releases.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/routes/_layout/$accountName/$projectName/releases/$releaseName.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/routes/_layout/$accountName/index.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/routes/_layout/orgs.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/routes/_layout.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/routes/auth/google.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/routes/auth/zenodo.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/routes/auth/zotero.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/routes/checkout.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/routes/join/$token.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/routes/login/device.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/routes/recover-password.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/routes/reset-password.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/theme.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/src/vite-env.d.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/tests/auth.setup.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/tests/config.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/tests/figures-pagination.spec.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/tests/login.spec.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/tests/reset-password.spec.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/tests/user-settings.spec.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/tests/utils/mailcatcher.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/tests/utils/random.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/tests/utils/user.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/tsconfig.json +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/tsconfig.node.json +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/vite.config.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/frontend/vitest.config.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/scripts/build-push.sh +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/scripts/build.sh +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/scripts/deploy.sh +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/scripts/pem-to-env.sh +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/scripts/test-local.sh +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/scripts/test.sh +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/texmf-proxy/Dockerfile +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/texmf-proxy/README.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/hub/texmf-proxy/proxy.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/jupyterlab-ext/.yarnrc.yml +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/jupyterlab-ext/babel.config.js +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/jupyterlab-ext/install.json +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/jupyterlab-ext/jest.config.js +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/jupyterlab-ext/jupyter-config/server-config/calkit.json +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/jupyterlab-ext/package.json +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/jupyterlab-ext/schema/plugin.json +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/jupyterlab-ext/src/__tests__/useQueries.spec.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/jupyterlab-ext/src/calkit-config.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/jupyterlab-ext/src/cell-output-marker.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/jupyterlab-ext/src/components/commit-dialog.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/jupyterlab-ext/src/components/environment-editor.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/jupyterlab-ext/src/components/notebook-registration.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/jupyterlab-ext/src/components/notebook-toolbar.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/jupyterlab-ext/src/components/pipeline-status-bar.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/jupyterlab-ext/src/components/project-info-editor.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/jupyterlab-ext/src/components/sidebar-settings.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/jupyterlab-ext/src/components/sidebar.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/jupyterlab-ext/src/components/stage-editor.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/jupyterlab-ext/src/feature-flags.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/jupyterlab-ext/src/file-browser-menu.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/jupyterlab-ext/src/hooks/__tests__/useQueries.test.tsx +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/jupyterlab-ext/src/hooks/useQueries.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/jupyterlab-ext/src/icons.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/jupyterlab-ext/src/index.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/jupyterlab-ext/src/io-tracker.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/jupyterlab-ext/src/pipeline-state.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/jupyterlab-ext/src/queryClient.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/jupyterlab-ext/src/request.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/jupyterlab-ext/src/shims-mainmenu.d.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/jupyterlab-ext/style/base.css +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/jupyterlab-ext/style/cell-output-marker.css +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/jupyterlab-ext/style/environment-editor.css +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/jupyterlab-ext/style/environment-selector.css +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/jupyterlab-ext/style/img/calkit-no-bg.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/jupyterlab-ext/style/index.css +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/jupyterlab-ext/style/index.js +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/jupyterlab-ext/style/notebook-toolbar.css +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/jupyterlab-ext/style/pipeline-status-bar.css +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/jupyterlab-ext/style/sidebar.css +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/jupyterlab-ext/tsconfig.json +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/jupyterlab-ext/tsconfig.test.json +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/jupyterlab-ext/ui-tests/.gitignore +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/jupyterlab-ext/ui-tests/README.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/jupyterlab-ext/ui-tests/jupyter_server_test_config.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/jupyterlab-ext/ui-tests/package.json +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/jupyterlab-ext/ui-tests/playwright.config.js +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/jupyterlab-ext/ui-tests/tests/calkit.spec.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/jupyterlab-ext/ui-tests/yarn.lock +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/jupyterlab-ext/yarn.lock +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/pyproject.toml +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/scripts/generate-docs-references.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/scripts/list-changes.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/scripts/make-calk9.sh +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/scripts/sync-docs.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/scripts/sync-resources.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/test/dvc-md5-dir/osx-arm64.txt +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/test/nb-julia.ipynb +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/test/nb-params.ipynb +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/test/nb-subdir.ipynb +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/test/pipeline.ipynb +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/test/script.py +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/test/test-log.log +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/vscode-ext/.gitignore +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/vscode-ext/.vscodeignore +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/vscode-ext/LICENSE +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/vscode-ext/README.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/vscode-ext/changelog-notes.md +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/vscode-ext/images/calkit-icon.svg +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/vscode-ext/images/calkit-no-bg.png +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/vscode-ext/package-lock.json +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/vscode-ext/package.json +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/vscode-ext/scripts/gen-changelog.js +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/vscode-ext/scripts/set-proposed-api.js +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/vscode-ext/src/environments.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/vscode-ext/src/figures/core.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/vscode-ext/src/figures/view.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/vscode-ext/src/markdown/core.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/vscode-ext/src/markdown/view.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/vscode-ext/src/notebooks.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/vscode-ext/src/pipeline/core.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/vscode-ext/src/sidebar.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/vscode-ext/src/test/environments.test.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/vscode-ext/src/test/figures.test.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/vscode-ext/src/test/kernel-selection.test.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/vscode-ext/src/test/markdown.test.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/vscode-ext/src/test/notebooks.test.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/vscode-ext/src/test/pipeline.test.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/vscode-ext/src/test/sidebar.test.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/vscode-ext/src/types.ts +0 -0
- {calkit_python-0.45.0 → calkit_python-0.45.2}/vscode-ext/tsconfig.json +0 -0
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
# Agent instructions for working on Calkit
|
|
2
|
+
|
|
3
|
+
## Repo structure
|
|
4
|
+
|
|
5
|
+
- The main Python package/CLI lives in `calkit`
|
|
6
|
+
- The JupyterLab extension lives in `src`
|
|
7
|
+
- The VS Code extension lives in `vscode-ext`
|
|
8
|
+
- The Chrome extension lives in `browser-ext`
|
|
9
|
+
- GitHub Actions live in `actions`, e.g., `calkit/calkit/actions/run`
|
|
10
|
+
- Config Calkit installs into projects, e.g., the dev container, VS Code, and
|
|
11
|
+
GitHub Actions configs, lives in `calkit/resources`; see the README there
|
|
12
|
+
before editing, since some of those files are generated
|
|
13
|
+
|
|
14
|
+
Be sure to read the `AGENTS.md` file in whatever subproject you're working on,
|
|
15
|
+
if applicable.
|
|
16
|
+
|
|
17
|
+
## Working
|
|
18
|
+
|
|
19
|
+
See `CONTRIBUTING.md` for tool usage, style guidelines, etc.
|
|
20
|
+
|
|
21
|
+
To run tests, use `uv run pytest`.
|
|
22
|
+
|
|
23
|
+
To sync the docs and format all the code, run `make format`.
|
|
24
|
+
|
|
25
|
+
Before finishing a change, type-check it. The CLI gate is mypy
|
|
26
|
+
(`uv run mypy <changed files>`, or `make check` for the full suite), and the
|
|
27
|
+
VS Code editor uses Pylance (Pyright). Keep new code clean under both, and do
|
|
28
|
+
not introduce new type errors.
|
|
29
|
+
|
|
30
|
+
Wrap prose at natural breakpoints in phrases or punctuation to keep max
|
|
31
|
+
line length below 80 characters.
|
|
32
|
+
|
|
33
|
+
In the docs, MkDocs Material admonitions (`!!! note`, `!!! tip`, etc.) must be
|
|
34
|
+
preceded by a `<!-- prettier-ignore -->` comment. Otherwise Prettier reformats
|
|
35
|
+
the block and strips the 4-space indentation of the admonition body, which
|
|
36
|
+
breaks rendering.
|
|
37
|
+
|
|
38
|
+
Agents should never make commits to Git.
|
|
39
|
+
|
|
40
|
+
Prefer tests that include multiple scenarios to comprehensively test
|
|
41
|
+
a feature in one function over many different test functions.
|
|
42
|
+
|
|
43
|
+
Do not write docstrings in test functions.
|
|
44
|
+
|
|
45
|
+
Do not put blank lines inside function bodies; separate logical sections with
|
|
46
|
+
comments instead. This only applies to blank lines we write, not ones the
|
|
47
|
+
formatter inserts, e.g., ruff-format adds one after an in-function import
|
|
48
|
+
block. Don't hoist imports to module scope just to avoid those; imports are
|
|
49
|
+
kept inside functions to keep CLI startup fast.
|
|
50
|
+
|
|
51
|
+
For prose, only use one space after punctuation.
|
|
52
|
+
|
|
53
|
+
Always put a comma after "i.e." and "e.g.".
|
|
54
|
+
|
|
55
|
+
Don't overzealously split up functions just because they're long.
|
|
56
|
+
Functions should usually be used ~3 times before abstracting.
|
|
57
|
+
Otherwise, split up long ones into logical sections with comments.
|
|
58
|
+
The only exception here is if splitting up a function makes it easier to
|
|
59
|
+
write meaningful unit tests.
|
|
60
|
+
If a function is only used inside one other function, nest it inside the
|
|
61
|
+
caller at the top.
|
|
62
|
+
|
|
63
|
+
No spaces on either side of en or em dashes used for ranges or pauses in prose,
|
|
64
|
+
respectively.
|
|
65
|
+
|
|
66
|
+
Never create `helpers` or `utils` modules or packages--tight coupling and
|
|
67
|
+
low cohesion architecture.
|
|
@@ -0,0 +1,411 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: calkit-python
|
|
3
|
+
Version: 0.45.2
|
|
4
|
+
Summary: Reproducibility simplified.
|
|
5
|
+
Project-URL: Homepage, https://calkit.org
|
|
6
|
+
Project-URL: Issues, https://github.com/calkit/calkit/issues
|
|
7
|
+
Project-URL: Repository, https://github.com/calkit/calkit
|
|
8
|
+
Author-email: Pete Bachant <petebachant@gmail.com>
|
|
9
|
+
License-File: LICENSE
|
|
10
|
+
Classifier: Framework :: Jupyter
|
|
11
|
+
Classifier: Framework :: Jupyter :: JupyterLab
|
|
12
|
+
Classifier: Framework :: Jupyter :: JupyterLab :: 4
|
|
13
|
+
Classifier: Framework :: Jupyter :: JupyterLab :: Extensions
|
|
14
|
+
Classifier: Framework :: Jupyter :: JupyterLab :: Extensions :: Prebuilt
|
|
15
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
16
|
+
Classifier: Operating System :: OS Independent
|
|
17
|
+
Classifier: Programming Language :: Python
|
|
18
|
+
Classifier: Programming Language :: Python :: 3
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
24
|
+
Requires-Python: >=3.10
|
|
25
|
+
Requires-Dist: arithmeval
|
|
26
|
+
Requires-Dist: bibtexparser
|
|
27
|
+
Requires-Dist: checksumdir
|
|
28
|
+
Requires-Dist: docx2pdf
|
|
29
|
+
Requires-Dist: dvc[all]==3.67.1
|
|
30
|
+
Requires-Dist: fastapi
|
|
31
|
+
Requires-Dist: fsspec>=2026.4.0
|
|
32
|
+
Requires-Dist: gitpython
|
|
33
|
+
Requires-Dist: json2latex>=0.0.3
|
|
34
|
+
Requires-Dist: jupyterlab>=4.4.5
|
|
35
|
+
Requires-Dist: keyring
|
|
36
|
+
Requires-Dist: nbconvert
|
|
37
|
+
Requires-Dist: papermill>=2.6.0
|
|
38
|
+
Requires-Dist: pathspec<1.0.0
|
|
39
|
+
Requires-Dist: pillow
|
|
40
|
+
Requires-Dist: psutil>=7.0.0
|
|
41
|
+
Requires-Dist: pydantic-settings
|
|
42
|
+
Requires-Dist: pydantic[email]
|
|
43
|
+
Requires-Dist: pyjwt
|
|
44
|
+
Requires-Dist: python-dotenv>=1
|
|
45
|
+
Requires-Dist: pywin32; platform_system == 'Windows'
|
|
46
|
+
Requires-Dist: requests
|
|
47
|
+
Requires-Dist: sqlitedict>=2.1.0
|
|
48
|
+
Requires-Dist: texsoup>=0.3.3
|
|
49
|
+
Requires-Dist: toml>=0.10.2
|
|
50
|
+
Requires-Dist: tqdm>=4.67.1
|
|
51
|
+
Requires-Dist: typer==0.25.1
|
|
52
|
+
Requires-Dist: uvicorn
|
|
53
|
+
Provides-Extra: data
|
|
54
|
+
Requires-Dist: pandas>=2.2.3; extra == 'data'
|
|
55
|
+
Requires-Dist: polars>=1.18.0; extra == 'data'
|
|
56
|
+
Provides-Extra: xet
|
|
57
|
+
Requires-Dist: xet>=0.0.1; extra == 'xet'
|
|
58
|
+
Description-Content-Type: text/markdown
|
|
59
|
+
|
|
60
|
+
<p align="center">
|
|
61
|
+
<a href="https://calkit.org" target="_blank">
|
|
62
|
+
<img width="40%" src="docs/img/calkit-no-bg.png" alt="Calkit">
|
|
63
|
+
</a>
|
|
64
|
+
</p>
|
|
65
|
+
<p align="center">
|
|
66
|
+
<a href="https://docs.calkit.org" target="_blank">
|
|
67
|
+
Documentation
|
|
68
|
+
</a>
|
|
69
|
+
|
|
|
70
|
+
<a href="https://docs.calkit.org/tutorials" target="_blank">
|
|
71
|
+
Tutorials
|
|
72
|
+
</a>
|
|
73
|
+
|
|
|
74
|
+
<a href="https://github.com/orgs/calkit/discussions" target="_blank">
|
|
75
|
+
Discussions
|
|
76
|
+
</a>
|
|
77
|
+
</p>
|
|
78
|
+
|
|
79
|
+
<!-- INCLUDE: docs/index.md -->
|
|
80
|
+
|
|
81
|
+
Typical research workflows are horizontally-siloed, i.e.,
|
|
82
|
+
various stages--data collection, analysis, writing--are performed in
|
|
83
|
+
disconnected systems,
|
|
84
|
+
turning research into a slow, error-prone, and tedious
|
|
85
|
+
[waterfall](https://en.wikipedia.org/wiki/Waterfall_model) process.
|
|
86
|
+
|
|
87
|
+
Calkit helps you integrate code, data, figures, results, publications,
|
|
88
|
+
and more into a cohesive, traceable, and portable _knowledge creation system_,
|
|
89
|
+
so every output can be traced back to its source (provenance)
|
|
90
|
+
and reproduced with a single command.
|
|
91
|
+
|
|
92
|
+
With industry standard tools combined into a unified and simplified experience
|
|
93
|
+
tailored for research,
|
|
94
|
+
you can reap the rewards of reproducibility and automation
|
|
95
|
+
without the cognitive overhead.
|
|
96
|
+
|
|
97
|
+
<!-- https://docs.google.com/drawings/d/1XMGnbgYYNFAVUBDyUaCyLfRB7efvJdrnrKmFlNmT19o/edit -->
|
|
98
|
+
|
|
99
|
+

|
|
100
|
+
|
|
101
|
+
## Features
|
|
102
|
+
|
|
103
|
+
- A simplified [version control](https://docs.calkit.org/version-control)
|
|
104
|
+
interface that unifies Git and DVC (Data Version Control),
|
|
105
|
+
so everything can be kept in the same project repository.
|
|
106
|
+
This way, code doesn't need to be siloed away from other
|
|
107
|
+
important artifacts like datasets, models, figures, or article PDFs,
|
|
108
|
+
allowing you to work on all parts of a project without hopping around to
|
|
109
|
+
different tools.
|
|
110
|
+
- [Computational environment management](https://docs.calkit.org/environments) with support for many
|
|
111
|
+
languages and environment managers: Conda, Docker, uv, Julia, Renv, and more.
|
|
112
|
+
No need to create and update environments on your own. Calkit will handle
|
|
113
|
+
them as needed.
|
|
114
|
+
- An environment-aware build system or [pipeline](https://docs.calkit.org/pipeline) with
|
|
115
|
+
a simple declarative syntax and
|
|
116
|
+
output caching so you don't need to think about which steps or stages
|
|
117
|
+
need to be rerun after changing any part of the project.
|
|
118
|
+
Simply call `calkit run`.
|
|
119
|
+
Compose your pipeline from many different kinds of stages,
|
|
120
|
+
including simple scripts, commands, Jupyter Notebooks, LaTeX, and more.
|
|
121
|
+
- A complementary self-hostable and GitHub-integrated
|
|
122
|
+
[hub](https://github.com/calkit/calkit/tree/main/hub)
|
|
123
|
+
to facilitate backup, collaboration,
|
|
124
|
+
and sharing throughout the entire research lifecycle.
|
|
125
|
+
- [Overleaf integration](https://docs.calkit.org/overleaf/), so
|
|
126
|
+
analysis, visualization, and writing can all stay in sync
|
|
127
|
+
(no more manual uploads!)
|
|
128
|
+
- Support for running on [high performance computing (HPC)](https://docs.calkit.org/hpc) systems
|
|
129
|
+
that use PBS or SLURM schedulers.
|
|
130
|
+
- Support for automated running with
|
|
131
|
+
[GitHub Actions](https://docs.calkit.org/tutorials/github-actions).
|
|
132
|
+
- Extensions for doing all of the above graphically in
|
|
133
|
+
[JupyterLab](https://docs.calkit.org/jupyterlab) and
|
|
134
|
+
[VS Code](https://marketplace.visualstudio.com/items?itemName=Calkit.calkit-vscode).
|
|
135
|
+
- A [browser extension](https://docs.calkit.org/browser-ext) for collecting references
|
|
136
|
+
directly to BibTeX (optionally synced with Zotero),
|
|
137
|
+
viewing DVC-stored files on GitHub,
|
|
138
|
+
and syncing figures and results with Overleaf directly in Chrome,
|
|
139
|
+
Microsoft Edge, and more.
|
|
140
|
+
|
|
141
|
+
<!-- END INCLUDE -->
|
|
142
|
+
|
|
143
|
+
## Installation
|
|
144
|
+
|
|
145
|
+
<!-- INCLUDE: docs/installation.md +1 -->
|
|
146
|
+
|
|
147
|
+
On Linux, macOS, or Windows Git Bash,
|
|
148
|
+
install Calkit and [uv](https://docs.astral.sh/uv/)
|
|
149
|
+
(if not already installed) with:
|
|
150
|
+
|
|
151
|
+
```sh
|
|
152
|
+
curl -LsSf install.calkit.org | sh
|
|
153
|
+
```
|
|
154
|
+
|
|
155
|
+
Or with Windows Command Prompt or PowerShell:
|
|
156
|
+
|
|
157
|
+
```powershell
|
|
158
|
+
powershell -ExecutionPolicy ByPass -c "irm install-ps1.calkit.org | iex"
|
|
159
|
+
```
|
|
160
|
+
|
|
161
|
+
If you already have uv installed, install Calkit with:
|
|
162
|
+
|
|
163
|
+
```sh
|
|
164
|
+
uv tool install calkit-python
|
|
165
|
+
```
|
|
166
|
+
|
|
167
|
+
You can also install with your system Python:
|
|
168
|
+
|
|
169
|
+
```sh
|
|
170
|
+
pip install calkit-python
|
|
171
|
+
```
|
|
172
|
+
|
|
173
|
+
To effectively use Calkit, you'll want to ensure [Git](https://git-scm.com)
|
|
174
|
+
is installed and properly configured.
|
|
175
|
+
You may also want to install [Docker](https://docker.com),
|
|
176
|
+
since that is the default method by which LaTeX environments are created.
|
|
177
|
+
If you want to use a [Calkit hub](https://docs.calkit.org/hub)
|
|
178
|
+
for collaboration and backup as a DVC remote,
|
|
179
|
+
you can [connect to the hub](https://docs.calkit.org/hub) with:
|
|
180
|
+
|
|
181
|
+
```sh
|
|
182
|
+
calkit hub login
|
|
183
|
+
```
|
|
184
|
+
|
|
185
|
+
If you use AI agents like Claude, Copilot, or Codex,
|
|
186
|
+
see [AI tools](https://docs.calkit.org/ai-tools)
|
|
187
|
+
to learn how to install agent skills for working with Calkit.
|
|
188
|
+
|
|
189
|
+
### Use without installing
|
|
190
|
+
|
|
191
|
+
If you want to use Calkit without installing it,
|
|
192
|
+
you can use uv's `uvx` command to run it directly:
|
|
193
|
+
|
|
194
|
+
```sh
|
|
195
|
+
uvx calk9 --help
|
|
196
|
+
```
|
|
197
|
+
|
|
198
|
+
### Nix
|
|
199
|
+
|
|
200
|
+
Calkit ships a [flake](https://nixos.wiki/wiki/Flakes) at the root of
|
|
201
|
+
its repo, so [Nix](https://nixos.org/) users can pull the CLI into their
|
|
202
|
+
environments alongside their other tools.
|
|
203
|
+
|
|
204
|
+
Run it ad hoc without installing:
|
|
205
|
+
|
|
206
|
+
```sh
|
|
207
|
+
nix run github:calkit/calkit -- --help
|
|
208
|
+
```
|
|
209
|
+
|
|
210
|
+
Drop into a shell that has `calkit`, `git`, and `uv` on `PATH`:
|
|
211
|
+
|
|
212
|
+
```sh
|
|
213
|
+
nix shell github:calkit/calkit
|
|
214
|
+
```
|
|
215
|
+
|
|
216
|
+
Add it to your own `flake.nix` as an input:
|
|
217
|
+
|
|
218
|
+
```nix
|
|
219
|
+
{
|
|
220
|
+
inputs.calkit.url = "github:calkit/calkit";
|
|
221
|
+
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
222
|
+
|
|
223
|
+
outputs = { self, nixpkgs, calkit }: {
|
|
224
|
+
devShells.x86_64-linux.default =
|
|
225
|
+
nixpkgs.legacyPackages.x86_64-linux.mkShell {
|
|
226
|
+
packages = [ calkit.packages.x86_64-linux.default ];
|
|
227
|
+
};
|
|
228
|
+
};
|
|
229
|
+
}
|
|
230
|
+
```
|
|
231
|
+
|
|
232
|
+
Then `nix develop` will give you a shell with the Calkit CLI ready to
|
|
233
|
+
use. To pin a specific Calkit release inside the shell, set the
|
|
234
|
+
`CALKIT_VERSION` environment variable (e.g. `CALKIT_VERSION=0.41.0`)
|
|
235
|
+
before invoking `calkit`.
|
|
236
|
+
|
|
237
|
+
The flake is currently a thin wrapper around `uvx --from calkit-python
|
|
238
|
+
calkit`. It depends on `uv` from `nixpkgs` and fetches the published
|
|
239
|
+
wheel from PyPI on first use. This trades a fully Nix-native build for
|
|
240
|
+
zero version-drift maintenance, and avoids the macOS `docx2pdf` /
|
|
241
|
+
`appscript` and JupyterLab labextension build issues that block a pure
|
|
242
|
+
nixpkgs derivation today. If you want a fully nixpkgs-native build,
|
|
243
|
+
see the community [`calkit-nix`](https://github.com/dwinkler1/calkit-nix)
|
|
244
|
+
flake.
|
|
245
|
+
|
|
246
|
+
Nix isn't supported natively on Windows; run Calkit inside
|
|
247
|
+
[WSL2](https://learn.microsoft.com/en-us/windows/wsl/install) and use
|
|
248
|
+
the flake there.
|
|
249
|
+
|
|
250
|
+
### Running against a specific version
|
|
251
|
+
|
|
252
|
+
If a project requires a Calkit version other than the one you have
|
|
253
|
+
installed, use the top-level `--use-version` flag to re-invoke the CLI
|
|
254
|
+
under that release without changing your installation:
|
|
255
|
+
|
|
256
|
+
```sh
|
|
257
|
+
calkit --use-version 0.38 run
|
|
258
|
+
```
|
|
259
|
+
|
|
260
|
+
This re-execs the CLI via `uvx --from calkit-python@<version> calkit`,
|
|
261
|
+
so it requires [uv](https://docs.astral.sh/uv/) on `PATH`.
|
|
262
|
+
You can also declare a minimum version in `calkit.yaml`;
|
|
263
|
+
see
|
|
264
|
+
[Pinning the Calkit CLI version](https://docs.calkit.org/requirements.md#pinning-the-calkit-cli-version).
|
|
265
|
+
|
|
266
|
+
### Calkit Assistant
|
|
267
|
+
|
|
268
|
+
For Windows users, the
|
|
269
|
+
[Calkit Assistant](https://github.com/calkit/calkit-assistant)
|
|
270
|
+
app is the easiest way to get everything set up and ready to work in
|
|
271
|
+
VS Code, which can then be used as the primary app for working on
|
|
272
|
+
all scientific or analytical computing projects.
|
|
273
|
+
|
|
274
|
+

|
|
275
|
+
|
|
276
|
+
<!-- END INCLUDE -->
|
|
277
|
+
|
|
278
|
+
## Quickstart
|
|
279
|
+
|
|
280
|
+
<!-- INCLUDE: docs/quickstart.md +1 -->
|
|
281
|
+
|
|
282
|
+
<!-- prettier-ignore -->
|
|
283
|
+
!!! note
|
|
284
|
+
`ck` is an abbreviated alias for the `calkit` executable.
|
|
285
|
+
All `calkit` commands can be run as `ck` instead, e.g., `ck save -am "..."`.
|
|
286
|
+
|
|
287
|
+
### From an existing project
|
|
288
|
+
|
|
289
|
+
If you want to use Calkit with an existing project,
|
|
290
|
+
navigate into its working directory and use the `xr` command to start
|
|
291
|
+
executing and recording your scripts, notebooks, LaTeX files, etc.,
|
|
292
|
+
as reproducible pipeline stages.
|
|
293
|
+
For example:
|
|
294
|
+
|
|
295
|
+
```sh
|
|
296
|
+
calkit xr scripts/analyze.py
|
|
297
|
+
|
|
298
|
+
calkit xr notebooks/plot.ipynb
|
|
299
|
+
|
|
300
|
+
calkit xr paper/main.tex
|
|
301
|
+
```
|
|
302
|
+
|
|
303
|
+
Calkit will attempt to detect environments, inputs, and outputs and
|
|
304
|
+
save them in `calkit.yaml`.
|
|
305
|
+
If successful,
|
|
306
|
+
you'll be able to run the full pipeline with:
|
|
307
|
+
|
|
308
|
+
```sh
|
|
309
|
+
calkit run
|
|
310
|
+
```
|
|
311
|
+
|
|
312
|
+
Next, make a change to e.g., a script and look at the output of
|
|
313
|
+
`calkit status`.
|
|
314
|
+
You'll see that the pipeline has a stage that is out-of-date:
|
|
315
|
+
|
|
316
|
+
```sh
|
|
317
|
+
---------------------------- Pipeline ----------------------------
|
|
318
|
+
analyze:
|
|
319
|
+
changed deps:
|
|
320
|
+
modified: scripts/analyze.py
|
|
321
|
+
```
|
|
322
|
+
|
|
323
|
+
This can be fixed with another call to `calkit run`.
|
|
324
|
+
|
|
325
|
+
You can save (add and commit) all changes with:
|
|
326
|
+
|
|
327
|
+
```sh
|
|
328
|
+
calkit save -am "Add to pipeline"
|
|
329
|
+
```
|
|
330
|
+
|
|
331
|
+
### Fresh from a Calkit project template
|
|
332
|
+
|
|
333
|
+
Create a new project from the
|
|
334
|
+
[`calkit/example-basic`](https://github.com/calkit/example-basic)
|
|
335
|
+
template with:
|
|
336
|
+
|
|
337
|
+
```sh
|
|
338
|
+
calkit new project my-research \
|
|
339
|
+
--title "My research" \
|
|
340
|
+
--template calkit/example-basic \
|
|
341
|
+
--hub
|
|
342
|
+
```
|
|
343
|
+
|
|
344
|
+
Note the `--hub` flag requires [a hub connection](https://docs.calkit.org/hub)
|
|
345
|
+
to be set up, but can be omitted if the project doesn't need to be backed up to
|
|
346
|
+
the hub or shared with collaborators.
|
|
347
|
+
Hub integration can also be set up later.
|
|
348
|
+
|
|
349
|
+
Next, move into the project folder and run the pipeline,
|
|
350
|
+
which consists of several stages defined in `calkit.yaml`:
|
|
351
|
+
|
|
352
|
+
<!-- TODO: This takes a long time to pull the image -->
|
|
353
|
+
|
|
354
|
+
```sh
|
|
355
|
+
cd my-research
|
|
356
|
+
calkit run
|
|
357
|
+
```
|
|
358
|
+
|
|
359
|
+
Next, make some edits to a script or LaTeX file and run `calkit status` to
|
|
360
|
+
see what stages are out-of-date.
|
|
361
|
+
For example:
|
|
362
|
+
|
|
363
|
+
```sh
|
|
364
|
+
---------------------------- Pipeline ----------------------------
|
|
365
|
+
build-paper:
|
|
366
|
+
changed deps:
|
|
367
|
+
modified: paper/paper.tex
|
|
368
|
+
```
|
|
369
|
+
|
|
370
|
+
Execute `calkit run` again to bring everything up-to-date.
|
|
371
|
+
|
|
372
|
+
To back up or save the project, call:
|
|
373
|
+
|
|
374
|
+
```sh
|
|
375
|
+
calkit save -am "Run pipeline"
|
|
376
|
+
```
|
|
377
|
+
|
|
378
|
+
### With an AI coding agent
|
|
379
|
+
|
|
380
|
+
Simply tell the [AI agent](https://docs.calkit.org/ai-tools):
|
|
381
|
+
|
|
382
|
+
> Turn this folder into a Calkit project
|
|
383
|
+
|
|
384
|
+
or
|
|
385
|
+
|
|
386
|
+
> Create me a new Calkit project for investigating...
|
|
387
|
+
|
|
388
|
+
<!-- END INCLUDE -->
|
|
389
|
+
|
|
390
|
+
## Get involved
|
|
391
|
+
|
|
392
|
+
We welcome all kinds of contributions!
|
|
393
|
+
See [CONTRIBUTING.md](CONTRIBUTING.md) to learn how to get involved.
|
|
394
|
+
|
|
395
|
+
## Acknowledgements
|
|
396
|
+
|
|
397
|
+
<!-- INCLUDE: docs/acknowledgements.md +1 -->
|
|
398
|
+
|
|
399
|
+
Calkit is supported by the
|
|
400
|
+
[Caltech Schmidt Academy of Software Engineering](https://sase.caltech.edu).
|
|
401
|
+
|
|
402
|
+
<p align="center">
|
|
403
|
+
<a href="https://sase.caltech.edu" target="_blank">
|
|
404
|
+
<img width="40%" src="docs/img/caltech.png" alt="Caltech SASE">
|
|
405
|
+
</a>
|
|
406
|
+
<a href="https://schmidtsciences.org/" target="_blank">
|
|
407
|
+
<img width="40%" src="docs/img/schmidt-sciences.png" alt="Schmidt Sciences">
|
|
408
|
+
</a>
|
|
409
|
+
</p>
|
|
410
|
+
|
|
411
|
+
<!-- END INCLUDE -->
|
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
from importlib.metadata import version as _version
|
|
4
|
+
from typing import TYPE_CHECKING
|
|
5
|
+
|
|
6
|
+
__version__ = _version("calkit-python")
|
|
7
|
+
|
|
8
|
+
from .core import * # noqa: F403, I001
|
|
9
|
+
|
|
10
|
+
if TYPE_CHECKING:
|
|
11
|
+
from calkit import ( # noqa: F401
|
|
12
|
+
calc,
|
|
13
|
+
conda,
|
|
14
|
+
config,
|
|
15
|
+
datasets,
|
|
16
|
+
dependencies,
|
|
17
|
+
detect,
|
|
18
|
+
docker,
|
|
19
|
+
dvc,
|
|
20
|
+
environments,
|
|
21
|
+
fs,
|
|
22
|
+
git,
|
|
23
|
+
github,
|
|
24
|
+
gui,
|
|
25
|
+
hub,
|
|
26
|
+
install,
|
|
27
|
+
invenio,
|
|
28
|
+
julia,
|
|
29
|
+
jupyter,
|
|
30
|
+
licenses,
|
|
31
|
+
magics,
|
|
32
|
+
matlab,
|
|
33
|
+
models,
|
|
34
|
+
notebooks,
|
|
35
|
+
office,
|
|
36
|
+
ops,
|
|
37
|
+
overleaf,
|
|
38
|
+
pipeline,
|
|
39
|
+
procedures,
|
|
40
|
+
provenance,
|
|
41
|
+
releases,
|
|
42
|
+
reproducibility,
|
|
43
|
+
resources,
|
|
44
|
+
schema,
|
|
45
|
+
server,
|
|
46
|
+
templates,
|
|
47
|
+
)
|
|
48
|
+
|
|
49
|
+
from .notebooks import declare_notebook # noqa: F401
|
|
50
|
+
|
|
51
|
+
# Lazy-load submodules to speed up imports
|
|
52
|
+
_SUBMODULES = {
|
|
53
|
+
"git",
|
|
54
|
+
"dvc",
|
|
55
|
+
"hub",
|
|
56
|
+
"fs",
|
|
57
|
+
"jupyter",
|
|
58
|
+
"config",
|
|
59
|
+
"models",
|
|
60
|
+
"office",
|
|
61
|
+
"templates",
|
|
62
|
+
"conda",
|
|
63
|
+
"calc",
|
|
64
|
+
"procedures",
|
|
65
|
+
"provenance",
|
|
66
|
+
"reproducibility",
|
|
67
|
+
"github",
|
|
68
|
+
"invenio",
|
|
69
|
+
"releases",
|
|
70
|
+
"resources",
|
|
71
|
+
"licenses",
|
|
72
|
+
"overleaf",
|
|
73
|
+
"julia",
|
|
74
|
+
"notebooks",
|
|
75
|
+
"environments",
|
|
76
|
+
"pipeline",
|
|
77
|
+
"matlab",
|
|
78
|
+
"datasets",
|
|
79
|
+
"dependencies",
|
|
80
|
+
"detect",
|
|
81
|
+
"docker",
|
|
82
|
+
"gui",
|
|
83
|
+
"install",
|
|
84
|
+
"magics",
|
|
85
|
+
"ops",
|
|
86
|
+
"schema",
|
|
87
|
+
"server",
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
def __getattr__(name: str):
|
|
92
|
+
if name in _SUBMODULES:
|
|
93
|
+
import importlib
|
|
94
|
+
|
|
95
|
+
mod = importlib.import_module(f"calkit.{name}")
|
|
96
|
+
globals()[name] = mod
|
|
97
|
+
return mod
|
|
98
|
+
if name == "declare_notebook":
|
|
99
|
+
from .notebooks import declare_notebook
|
|
100
|
+
|
|
101
|
+
globals()["declare_notebook"] = declare_notebook
|
|
102
|
+
return declare_notebook
|
|
103
|
+
raise AttributeError(f"module 'calkit' has no attribute {name!r}")
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
def _jupyter_labextension_paths():
|
|
107
|
+
return [{"src": "labextension", "dest": "calkit"}]
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
def _jupyter_server_extension_points():
|
|
111
|
+
return [{"module": "calkit"}]
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
def _load_jupyter_server_extension(server_app):
|
|
115
|
+
"""Registers the API handler to receive HTTP requests from the frontend
|
|
116
|
+
extension.
|
|
117
|
+
|
|
118
|
+
Parameters
|
|
119
|
+
----------
|
|
120
|
+
server_app: jupyterlab.labapp.LabApp
|
|
121
|
+
JupyterLab application instance
|
|
122
|
+
"""
|
|
123
|
+
import os
|
|
124
|
+
|
|
125
|
+
from .jupyterlab.routes import setup_route_handlers
|
|
126
|
+
|
|
127
|
+
# Change to root_dir so all handlers work in the correct directory context
|
|
128
|
+
root_dir = server_app.root_dir
|
|
129
|
+
os.chdir(root_dir)
|
|
130
|
+
server_app.log.info(f"Changed working directory to {root_dir}")
|
|
131
|
+
setup_route_handlers(server_app.web_app)
|
|
132
|
+
name = "calkit"
|
|
133
|
+
server_app.log.info(f"Registered {name} server extension")
|