calkit-python 0.37.2__tar.gz → 0.37.4__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.37.2 → calkit_python-0.37.4}/Makefile +3 -6
- {calkit_python-0.37.2 → calkit_python-0.37.4}/PKG-INFO +56 -45
- {calkit_python-0.37.2 → calkit_python-0.37.4}/README.md +55 -44
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/cli/check.py +266 -111
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/cli/main/core.py +11 -5
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/cli/new.py +18 -4
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/cli/notebooks.py +29 -3
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/cli/slurm.py +41 -9
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/conda.py +34 -12
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/dvc/zip.py +9 -3
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/environments.py +126 -13
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/fs.py +111 -12
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/git.py +1 -1
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/julia.py +30 -2
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/labextension/package.json +1 -1
- calkit_python-0.37.2/calkit/labextension/static/909.651be47ca47390b78a92.js → calkit_python-0.37.4/calkit/labextension/static/909.e3f9cc3408834a7fdcc3.js +1 -1
- calkit_python-0.37.2/calkit/labextension/static/remoteEntry.c091821b3d7f2d287a67.js → calkit_python-0.37.4/calkit/labextension/static/remoteEntry.65469af996e7a96aa983.js +1 -1
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/matlab.py +1 -1
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/models/core.py +29 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/models/pipeline.py +18 -15
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/pipeline.py +2 -2
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/tests/cli/test_check.py +71 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/tests/cli/test_new.py +1 -1
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/tests/models/test_pipeline.py +13 -1
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/tests/test_conda.py +1 -1
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/tests/test_environments.py +155 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/tests/test_fs.py +119 -1
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/tests/test_git.py +5 -5
- calkit_python-0.37.4/calkit/tests/test_julia.py +97 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/tests/test_pipeline.py +38 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/cli-reference.md +53 -25
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/environments.md +143 -0
- calkit_python-0.37.4/docs/index.md +59 -0
- calkit_python-0.37.4/docs/pipeline/index.md +460 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/tutorials/github-actions.md +10 -14
- calkit_python-0.37.4/docs/tutorials/img/vscode-slurm-notebook/create-calkit-env.png +0 -0
- calkit_python-0.37.4/docs/tutorials/img/vscode-slurm-notebook/create-inner-env.png +0 -0
- calkit_python-0.37.4/docs/tutorials/img/vscode-slurm-notebook/create-new-calkit-env.png +0 -0
- calkit_python-0.37.4/docs/tutorials/img/vscode-slurm-notebook/select-calkit-env.png +0 -0
- calkit_python-0.37.4/docs/tutorials/img/vscode-slurm-notebook/slurm-job-running.png +0 -0
- calkit_python-0.37.4/docs/tutorials/img/vscode-slurm-notebook/slurm-launch-options.png +0 -0
- calkit_python-0.37.4/docs/tutorials/img/vscode-slurm-notebook/starting-slurm-job.png +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/tutorials/index.md +1 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/tutorials/openfoam.md +3 -3
- calkit_python-0.37.4/docs/tutorials/vscode-slurm-notebook.md +79 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/mkdocs.yml +1 -0
- calkit_python-0.37.4/scripts/generate-docs-references.py +752 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/scripts/install.ps1 +1 -1
- {calkit_python-0.37.2 → calkit_python-0.37.4}/scripts/install.sh +2 -2
- {calkit_python-0.37.2 → calkit_python-0.37.4}/scripts/sync-docs.py +15 -5
- {calkit_python-0.37.2 → calkit_python-0.37.4}/src/components/project-info-editor.tsx +1 -1
- {calkit_python-0.37.2 → calkit_python-0.37.4}/src/components/sidebar.tsx +2 -3
- {calkit_python-0.37.2 → calkit_python-0.37.4}/vscode-ext/package-lock.json +6 -6
- {calkit_python-0.37.2 → calkit_python-0.37.4}/vscode-ext/package.json +6 -3
- {calkit_python-0.37.2 → calkit_python-0.37.4}/vscode-ext/src/environments.ts +1 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/vscode-ext/src/extension.ts +162 -17
- {calkit_python-0.37.2 → calkit_python-0.37.4}/vscode-ext/src/types.ts +4 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/vscode-ext/tsconfig.json +1 -0
- calkit_python-0.37.2/calkit/tests/test_julia.py +0 -31
- calkit_python-0.37.2/docs/index.md +0 -56
- calkit_python-0.37.2/docs/pipeline/index.md +0 -280
- calkit_python-0.37.2/scripts/generate-cli-reference.py +0 -395
- {calkit_python-0.37.2 → calkit_python-0.37.4}/.gitignore +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/.pre-commit-config.yaml +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/.prettierignore +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/.python-version +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/.vscode/launch.json +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/.vscode/tasks.json +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/.yarnrc.yml +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/CITATION.cff +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/CODE_OF_CONDUCT.md +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/CONTRIBUTING.md +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/LICENSE +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/babel.config.js +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/__init__.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/__main__.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/calc.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/check.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/cli/__init__.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/cli/cloud.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/cli/config.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/cli/core.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/cli/describe.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/cli/import_.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/cli/latex.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/cli/list.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/cli/main/__init__.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/cli/main/xr.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/cli/office.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/cli/overleaf.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/cli/update.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/cloud.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/config.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/core.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/datasets.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/detect.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/docker.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/dvc/__init__.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/dvc/core.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/github.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/gui.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/invenio.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/jupyter.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/jupyterlab/__init__.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/jupyterlab/routes.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/labextension/schemas/calkit/package.json.orig +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/labextension/schemas/calkit/plugin.json +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/labextension/static/502.9a2c5772a15466e923ef.js +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/labextension/static/695.2c41003a452d43d2b358.js +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/labextension/static/867.a42a046aa5108f54f8fb.js +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/labextension/static/946.050af2abf7845cfbdbd2.js +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/labextension/static/946.050af2abf7845cfbdbd2.js.LICENSE.txt +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/labextension/static/b2f1c3efe70cb539d121.png +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/labextension/static/style.js +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/labextension/static/third-party-licenses.json +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/licenses.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/magics.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/models/__init__.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/models/io.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/models/iteration.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/notebooks.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/office.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/ops.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/overleaf.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/releases.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/server.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/templates/__init__.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/templates/core.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/templates/latex/__init__.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/templates/latex/article/paper.tex +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/templates/latex/core.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/templates/latex/jfm/jfm.bst +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/templates/latex/jfm/jfm.cls +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/templates/latex/jfm/lineno-FLM.sty +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/templates/latex/jfm/paper.tex +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/templates/latex/jfm/upmath.sty +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/tests/__init__.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/tests/cli/__init__.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/tests/cli/main/__init__.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/tests/cli/main/test_core.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/tests/cli/main/test_xr.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/tests/cli/test_config.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/tests/cli/test_import.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/tests/cli/test_latex.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/tests/cli/test_list.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/tests/cli/test_notebooks.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/tests/cli/test_overleaf.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/tests/cli/test_update.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/tests/dvc/__init__.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/tests/dvc/test_core.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/tests/dvc/test_zip.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/tests/jupyterlab/__init__.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/tests/jupyterlab/test_routes.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/tests/models/__init__.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/tests/models/test_iteration.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/tests/test_calc.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/tests/test_check.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/tests/test_core.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/tests/test_detect.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/tests/test_docker.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/tests/test_invenio.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/tests/test_jupyter.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/tests/test_magics.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/tests/test_matlab.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/tests/test_notebooks.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/tests/test_releases.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/calkit/tests/test_templates.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/conftest.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/CNAME +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/apps.md +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/calculations.md +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/calkit-yaml.md +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/cloud-integration.md +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/datasets.md +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/dependencies.md +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/examples.md +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/governance.md +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/help.md +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/img/c-to-the-k-white.svg +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/img/calkit-fragmentation-compendium.png +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/img/calkit-no-bg.png +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/img/connect-zenodo.png +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/img/jupyterlab/all-green.png +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/img/jupyterlab/collect-data-stale.png +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/img/jupyterlab/new-env.png +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/img/jupyterlab/new-notebook.png +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/img/jupyterlab/pipeline-badge.png +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/img/jupyterlab-params.png +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/img/plos-osi-code-2024-03.png +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/img/vscode-nb-params.png +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/installation.md +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/jupyterlab.md +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/local-server.md +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/notebooks.md +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/overleaf.md +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/pipeline/manual-steps.md +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/pipeline/running-and-logging.md +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/pipeline/slurm.md +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/quickstart.md +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/references.md +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/releases.md +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/reproducibility.md +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/tutorials/adding-latex-pub-docker.md +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/tutorials/conda-envs.md +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/tutorials/existing-project.md +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/tutorials/first-project.md +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/tutorials/img/actions-repo-secrets.png +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/tutorials/img/latex-codespaces/building-codespace.png +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/tutorials/img/latex-codespaces/codespaces-secrets-2.png +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/tutorials/img/latex-codespaces/editor-split.png +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/tutorials/img/latex-codespaces/go-to-linked-code.png +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/tutorials/img/latex-codespaces/issue-from-selection.png +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/tutorials/img/latex-codespaces/new-project.png +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/tutorials/img/latex-codespaces/new-pub-2.png +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/tutorials/img/latex-codespaces/new-token.png +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/tutorials/img/latex-codespaces/paper.tex.png +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/tutorials/img/latex-codespaces/project-home-3.png +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/tutorials/img/latex-codespaces/push.png +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/tutorials/img/latex-codespaces/stage.png +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/tutorials/img/office/anakin-excel.jpg +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/tutorials/img/office/chart-more-rows.png +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/tutorials/img/office/create-project.png +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/tutorials/img/office/elsevier-research-data-guidelines.png +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/tutorials/img/office/excel-chart.png +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/tutorials/img/office/excel-data.png +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/tutorials/img/office/insert-link-to-file.png +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/tutorials/img/office/needs-clone.png +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/tutorials/img/office/new-stage.png +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/tutorials/img/office/phd-comics-version-control.webp +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/tutorials/img/office/pipeline-out-of-date.png +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/tutorials/img/office/status-more-rows.png +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/tutorials/img/office/uncommitted-changes.png +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/tutorials/img/office/untracked-data.png +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/tutorials/img/office/updated-publication.png +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/tutorials/img/office/word-to-pdf-stage-2.png +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/tutorials/img/office/workflow-page.png +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/tutorials/img/openfoam/clone.png +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/tutorials/img/openfoam/create-project.png +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/tutorials/img/openfoam/datasets-page.png +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/tutorials/img/openfoam/figure-on-website-updated.png +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/tutorials/img/openfoam/figure-on-website.png +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/tutorials/img/openfoam/new-token.png +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/tutorials/img/openfoam/reclone.png +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/tutorials/img/openfoam/status-after-import-dataset.png +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/tutorials/img/quick-actions.png +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/tutorials/img/run-proc.png +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/tutorials/jupyterlab.md +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/tutorials/latex-codespaces.md +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/tutorials/matlab.md +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/tutorials/notebook-pipeline.md +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/tutorials/office.md +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/tutorials/procedures.md +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/docs/version-control.md +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/install.json +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/jest.config.js +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/jupyter-config/server-config/calkit.json +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/package.json +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/pyproject.toml +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/schema/plugin.json +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/scripts/make-calk9.sh +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/src/__tests__/useQueries.spec.ts +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/src/calkit-config.ts +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/src/cell-output-marker.ts +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/src/components/commit-dialog.tsx +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/src/components/environment-editor.tsx +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/src/components/notebook-registration.tsx +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/src/components/notebook-toolbar.tsx +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/src/components/pipeline-status-bar.tsx +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/src/components/sidebar-settings.tsx +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/src/components/stage-editor.tsx +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/src/feature-flags.ts +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/src/file-browser-menu.ts +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/src/hooks/__tests__/useQueries.test.tsx +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/src/hooks/useQueries.ts +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/src/icons.ts +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/src/index.ts +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/src/io-tracker.ts +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/src/pipeline-state.ts +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/src/queryClient.ts +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/src/request.ts +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/src/shims-mainmenu.d.ts +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/style/base.css +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/style/cell-output-marker.css +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/style/environment-editor.css +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/style/environment-selector.css +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/style/img/calkit-no-bg.png +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/style/index.css +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/style/index.js +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/style/notebook-toolbar.css +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/style/pipeline-status-bar.css +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/style/sidebar.css +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/test/dvc-md5-dir/osx-arm64.txt +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/test/nb-julia.ipynb +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/test/nb-params.ipynb +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/test/nb-subdir.ipynb +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/test/pipeline.ipynb +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/test/script.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/test/test-log.log +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/tsconfig.json +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/tsconfig.test.json +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/ui-tests/.gitignore +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/ui-tests/README.md +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/ui-tests/jupyter_server_test_config.py +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/ui-tests/package.json +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/ui-tests/playwright.config.js +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/ui-tests/tests/calkit.spec.ts +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/ui-tests/yarn.lock +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/uv.lock +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/vscode-ext/.gitignore +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/vscode-ext/.vscodeignore +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/vscode-ext/CHANGELOG.md +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/vscode-ext/LICENSE +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/vscode-ext/README.md +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/vscode-ext/images/calkit-no-bg.png +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/vscode-ext/scripts/set-proposed-api.js +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/vscode-ext/src/notebooks.ts +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/vscode-ext/src/test/environments.test.ts +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/vscode-ext/src/test/notebooks.test.ts +0 -0
- {calkit_python-0.37.2 → calkit_python-0.37.4}/yarn.lock +0 -0
|
@@ -37,15 +37,12 @@ test-docs: sync-docs ## Test if documentation can be built without warnings or e
|
|
|
37
37
|
@uv run mkdocs build -s
|
|
38
38
|
|
|
39
39
|
.PHONY: sync-docs
|
|
40
|
-
sync-docs:
|
|
40
|
+
sync-docs: ## Sync documentation content from docs/*.md into README.md.
|
|
41
|
+
@echo "🚀 Generating docs references"
|
|
42
|
+
@uv run python scripts/generate-docs-references.py
|
|
41
43
|
@echo "🚀 Syncing documentation"
|
|
42
44
|
@uv run python scripts/sync-docs.py
|
|
43
45
|
|
|
44
|
-
.PHONY: cli-reference
|
|
45
|
-
cli-reference: ## Generate docs/cli-reference.md from CLI help output.
|
|
46
|
-
@echo "🚀 Generating CLI reference"
|
|
47
|
-
@uv run python scripts/generate-cli-reference.py
|
|
48
|
-
|
|
49
46
|
.PHONY: docs
|
|
50
47
|
docs: sync-docs ## Build and serve the documentation.
|
|
51
48
|
@uv run mkdocs serve --livereload
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: calkit-python
|
|
3
|
-
Version: 0.37.
|
|
3
|
+
Version: 0.37.4
|
|
4
4
|
Summary: Reproducibility simplified.
|
|
5
5
|
Project-URL: Homepage, https://calkit.org
|
|
6
6
|
Project-URL: Issues, https://github.com/calkit/calkit/issues
|
|
@@ -76,56 +76,67 @@ Description-Content-Type: text/markdown
|
|
|
76
76
|
</a>
|
|
77
77
|
</p>
|
|
78
78
|
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
79
|
+
<!-- INCLUDE: docs/index.md -->
|
|
80
|
+
|
|
81
|
+
Calkit helps you manage and automate research projects like a software
|
|
82
|
+
engineer.
|
|
83
|
+
|
|
84
|
+
Define computational environments,
|
|
85
|
+
steps that process your data, create figures,
|
|
86
|
+
presentations, and publications, connect to external tools,
|
|
87
|
+
then iterate quickly and painlessly until your research questions are
|
|
88
|
+
answered, tracking changes to all files along the way.
|
|
89
|
+
At the end, deliver your entire project as a self-contained, self-documenting,
|
|
90
|
+
version-controlled, and
|
|
91
|
+
[single button reproducible](https://doi.org/10.1190/1.1822162)
|
|
92
|
+
"calculation kit" so you and others can easily verify
|
|
93
|
+
and build upon the results.
|
|
94
|
+
|
|
95
|
+
## Guiding principles
|
|
96
|
+
|
|
97
|
+
- Quality comes from iteration. Automation reduces the time and effort
|
|
98
|
+
needed to iterate, thereby increasing iteration and quality.
|
|
99
|
+
- Automating a step can and should take roughly
|
|
100
|
+
the same amount of time as doing it once manually,
|
|
101
|
+
therefore it's almost always worth it.
|
|
102
|
+
- Working in a "quick and dirty" way can easily become _not quick_ when
|
|
103
|
+
the dirtiness results in mistakes and/or discourages working in small steps.
|
|
102
104
|
|
|
103
105
|
## Features
|
|
104
106
|
|
|
105
|
-
- A
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
107
|
+
- A simplified [version control](https://docs.calkit.org/version-control)
|
|
108
|
+
interface that unifies Git and DVC (Data Version Control),
|
|
109
|
+
so all materials can be kept in the same project repository.
|
|
110
|
+
This way, code doesn't need to be siloed away from other
|
|
111
|
+
important artifacts like datasets, models, figures, or article PDFs,
|
|
112
|
+
allowing you to work on all parts of a project without hopping around to
|
|
113
|
+
different tools.
|
|
114
|
+
- [Computational environment management](https://docs.calkit.org/environments) with support for many
|
|
115
|
+
languages and environment managers: Conda, Docker, uv, Julia, Renv, and more.
|
|
116
|
+
No need to create and update environments on your own. Calkit will handle
|
|
117
|
+
them as needed.
|
|
118
|
+
- An environment-aware build system or [pipeline](https://docs.calkit.org/pipeline) with
|
|
119
|
+
a simple declarative syntax and
|
|
120
|
+
output caching so you don't need to think about which steps or stages
|
|
121
|
+
need to be rerun after changing any part of the project.
|
|
122
|
+
Simply call `calkit run`.
|
|
123
|
+
Compose your pipeline from many different kinds of stages,
|
|
124
|
+
including simple scripts, commands, Jupyter Notebooks, LaTeX, and more.
|
|
122
125
|
- A complementary self-hostable and GitHub-integrated
|
|
123
|
-
[cloud
|
|
126
|
+
[cloud platform](https://github.com/calkit/calkit-cloud)
|
|
124
127
|
to facilitate backup, collaboration,
|
|
125
128
|
and sharing throughout the entire research lifecycle.
|
|
126
|
-
- [Overleaf integration](https://docs.calkit.org/overleaf/), so
|
|
127
|
-
|
|
128
|
-
|
|
129
|
+
- [Overleaf integration](https://docs.calkit.org/overleaf/), so
|
|
130
|
+
analysis, visualization, and writing can all stay in sync
|
|
131
|
+
(no more manual uploads!)
|
|
132
|
+
- Support for running on high performance computing (HPC) systems that use
|
|
133
|
+
[SLURM schedulers](https://docs.calkit.org/pipeline/slurm).
|
|
134
|
+
- Support for running with [GitHub Actions](https://docs.calkit.org/tutorials/github-actions).
|
|
135
|
+
- Extensions for doing all of the above graphically in
|
|
136
|
+
[JupyterLab](https://docs.calkit.org/jupyterlab) and
|
|
137
|
+
[VS Code](https://marketplace.visualstudio.com/items?itemName=Calkit.calkit-vscode).
|
|
138
|
+
|
|
139
|
+
<!-- END INCLUDE -->
|
|
129
140
|
|
|
130
141
|
## Installation
|
|
131
142
|
|
|
@@ -17,56 +17,67 @@
|
|
|
17
17
|
</a>
|
|
18
18
|
</p>
|
|
19
19
|
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
20
|
+
<!-- INCLUDE: docs/index.md -->
|
|
21
|
+
|
|
22
|
+
Calkit helps you manage and automate research projects like a software
|
|
23
|
+
engineer.
|
|
24
|
+
|
|
25
|
+
Define computational environments,
|
|
26
|
+
steps that process your data, create figures,
|
|
27
|
+
presentations, and publications, connect to external tools,
|
|
28
|
+
then iterate quickly and painlessly until your research questions are
|
|
29
|
+
answered, tracking changes to all files along the way.
|
|
30
|
+
At the end, deliver your entire project as a self-contained, self-documenting,
|
|
31
|
+
version-controlled, and
|
|
32
|
+
[single button reproducible](https://doi.org/10.1190/1.1822162)
|
|
33
|
+
"calculation kit" so you and others can easily verify
|
|
34
|
+
and build upon the results.
|
|
35
|
+
|
|
36
|
+
## Guiding principles
|
|
37
|
+
|
|
38
|
+
- Quality comes from iteration. Automation reduces the time and effort
|
|
39
|
+
needed to iterate, thereby increasing iteration and quality.
|
|
40
|
+
- Automating a step can and should take roughly
|
|
41
|
+
the same amount of time as doing it once manually,
|
|
42
|
+
therefore it's almost always worth it.
|
|
43
|
+
- Working in a "quick and dirty" way can easily become _not quick_ when
|
|
44
|
+
the dirtiness results in mistakes and/or discourages working in small steps.
|
|
43
45
|
|
|
44
46
|
## Features
|
|
45
47
|
|
|
46
|
-
- A
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
48
|
+
- A simplified [version control](https://docs.calkit.org/version-control)
|
|
49
|
+
interface that unifies Git and DVC (Data Version Control),
|
|
50
|
+
so all materials can be kept in the same project repository.
|
|
51
|
+
This way, code doesn't need to be siloed away from other
|
|
52
|
+
important artifacts like datasets, models, figures, or article PDFs,
|
|
53
|
+
allowing you to work on all parts of a project without hopping around to
|
|
54
|
+
different tools.
|
|
55
|
+
- [Computational environment management](https://docs.calkit.org/environments) with support for many
|
|
56
|
+
languages and environment managers: Conda, Docker, uv, Julia, Renv, and more.
|
|
57
|
+
No need to create and update environments on your own. Calkit will handle
|
|
58
|
+
them as needed.
|
|
59
|
+
- An environment-aware build system or [pipeline](https://docs.calkit.org/pipeline) with
|
|
60
|
+
a simple declarative syntax and
|
|
61
|
+
output caching so you don't need to think about which steps or stages
|
|
62
|
+
need to be rerun after changing any part of the project.
|
|
63
|
+
Simply call `calkit run`.
|
|
64
|
+
Compose your pipeline from many different kinds of stages,
|
|
65
|
+
including simple scripts, commands, Jupyter Notebooks, LaTeX, and more.
|
|
63
66
|
- A complementary self-hostable and GitHub-integrated
|
|
64
|
-
[cloud
|
|
67
|
+
[cloud platform](https://github.com/calkit/calkit-cloud)
|
|
65
68
|
to facilitate backup, collaboration,
|
|
66
69
|
and sharing throughout the entire research lifecycle.
|
|
67
|
-
- [Overleaf integration](https://docs.calkit.org/overleaf/), so
|
|
68
|
-
|
|
69
|
-
|
|
70
|
+
- [Overleaf integration](https://docs.calkit.org/overleaf/), so
|
|
71
|
+
analysis, visualization, and writing can all stay in sync
|
|
72
|
+
(no more manual uploads!)
|
|
73
|
+
- Support for running on high performance computing (HPC) systems that use
|
|
74
|
+
[SLURM schedulers](https://docs.calkit.org/pipeline/slurm).
|
|
75
|
+
- Support for running with [GitHub Actions](https://docs.calkit.org/tutorials/github-actions).
|
|
76
|
+
- Extensions for doing all of the above graphically in
|
|
77
|
+
[JupyterLab](https://docs.calkit.org/jupyterlab) and
|
|
78
|
+
[VS Code](https://marketplace.visualstudio.com/items?itemName=Calkit.calkit-vscode).
|
|
79
|
+
|
|
80
|
+
<!-- END INCLUDE -->
|
|
70
81
|
|
|
71
82
|
## Installation
|
|
72
83
|
|