.gitignore
LICENSE
README.md
pyproject.toml
.github/workflows/ci.yml
.github/workflows/release.yml
docs/index.md
docs/requirements.txt
docs/advanced/backends.md
docs/features/caching.md
docs/features/data-parallelism.md
docs/features/distributed.md
docs/features/environments.md
docs/features/pipelines.md
docs/features/reporting.md
docs/features/seed-parallelism.md
docs/getting-started/creating-a-project.md
docs/getting-started/quick-start.md
docs/project-structure/configuration.md
docs/project-structure/model-code.md
docs/project-structure/overview.md
docs/templates/premier-league.md
docs/templates/sklearn-basic.md
docs/web-ui/local-ui.md
src/__init__.py
src/expops/__init__.py
src/expops/__main__.py
src/expops/_version.py
src/expops/main.py
src/expops/platform.py
src/expops.egg-info/PKG-INFO
src/expops.egg-info/SOURCES.txt
src/expops.egg-info/dependency_links.txt
src/expops.egg-info/entry_points.txt
src/expops.egg-info/requires.txt
src/expops.egg-info/top_level.txt
src/expops/adapters/__init__.py
src/expops/adapters/base.py
src/expops/adapters/config_schema.py
src/expops/adapters/plugin_manager.py
src/expops/adapters/custom/__init__.py
src/expops/adapters/custom/custom_adapter.py
src/expops/adapters/sklearn/__init__.py
src/expops/adapters/sklearn/adapter.py
src/expops/cluster/__init__.py
src/expops/cluster/controller.py
src/expops/cluster/process_runner.py
src/expops/cluster/providers.py
src/expops/core/__init__.py
src/expops/core/compute_config.py
src/expops/core/executor_worker.py
src/expops/core/networkx_parser.py
src/expops/core/parallelism_utils.py
src/expops/core/probe_path_selectors.py
src/expops/core/process_hashing.py
src/expops/core/step_system.py
src/expops/core/workspace.py
src/expops/core/cache_probe/__init__.py
src/expops/core/cache_probe/cache_layout.py
src/expops/core/cache_probe/probe_path.py
src/expops/core/cache_probe/probe_path_selectors.py
src/expops/core/execution/__init__.py
src/expops/core/execution/dask_networkx_executor.py
src/expops/core/execution/executor_worker.py
src/expops/core/graph/__init__.py
src/expops/core/graph/graph_expansion.py
src/expops/core/graph/graph_types.py
src/expops/core/graph/networkx_parser.py
src/expops/core/graph/pipeline_tree.py
src/expops/core/graph/pipeline_utils.py
src/expops/core/hashing/__init__.py
src/expops/core/hashing/data_hashing.py
src/expops/core/hashing/process_hashing.py
src/expops/core/runtime/__init__.py
src/expops/core/runtime/custom_model_base.py
src/expops/core/runtime/payload_spill.py
src/expops/core/runtime/step_state_manager.py
src/expops/core/runtime/step_system.py
src/expops/environment/__init__.py
src/expops/environment/base.py
src/expops/environment/conda_manager.py
src/expops/environment/factory.py
src/expops/environment/pyenv_manager.py
src/expops/environment/setup_env.py
src/expops/environment/system_manager.py
src/expops/environment/utils.py
src/expops/environment/venv_manager.py
src/expops/managers/project_manager.py
src/expops/managers/reproducibility_manager.py
src/expops/reporting/__init__.py
src/expops/reporting/context.py
src/expops/reporting/entrypoint.py
src/expops/reporting/kv_utils.py
src/expops/reporting/registry.py
src/expops/runtime/__init__.py
src/expops/runtime/context.py
src/expops/runtime/env_export.py
src/expops/storage/__init__.py
src/expops/storage/factory.py
src/expops/storage/path_utils.py
src/expops/storage/adapters/__init__.py
src/expops/storage/adapters/gcp_kv_store.py
src/expops/storage/adapters/gcs_object_store.py
src/expops/storage/adapters/memory_store.py
src/expops/storage/adapters/redis_store.py
src/expops/storage/adapters/sqlite_store.py
src/expops/storage/interfaces/__init__.py
src/expops/storage/interfaces/kv_store.py
src/expops/templates/premier-league/.gitignore
src/expops/templates/premier-league/requirements-charts.txt
src/expops/templates/premier-league/requirements.txt
src/expops/templates/premier-league/configs/compute_config.yaml
src/expops/templates/premier-league/configs/project_config.yaml
src/expops/templates/premier-league/data/England CSV.csv
src/expops/templates/premier-league/src/plot_metrics.js
src/expops/templates/premier-league/src/plot_metrics.py
src/expops/templates/premier-league/src/premier_league_model.py
src/expops/templates/sklearn-basic/.gitignore
src/expops/templates/sklearn-basic/requirements-charts.txt
src/expops/templates/sklearn-basic/requirements.txt
src/expops/templates/sklearn-basic/configs/compute_config.yaml
src/expops/templates/sklearn-basic/configs/project_config.yaml
src/expops/templates/sklearn-basic/data/train.csv
src/expops/templates/sklearn-basic/src/model.py
src/expops/templates/sklearn-basic/src/plot_metrics.py
src/expops/web/__init__.py
src/expops/web/server.py
src/expops/web/ui/index.html
src/expops/web/ui/mlops-charts.js
src/expops/web/ui/script.js
src/expops/web/ui/styles.css
tests/conftest.py
tests/testing-plan.md
tests/unit/__init__.py
tests/unit/test_environment_paths.py
tests/unit/test_cli/test_expops_run_infer_project.py
tests/unit/test_cli/test_main_create_in_place.py
tests/unit/test_core/__init__.py
tests/unit/test_core/test_cache_layout.py
tests/unit/test_core/test_dask_networkx_executor.py
tests/unit/test_core/test_data_hashing.py
tests/unit/test_core/test_executor_worker.py
tests/unit/test_core/test_graph_expansion.py
tests/unit/test_core/test_networkx_parser.py
tests/unit/test_core/test_networkx_parser_code_field.py
tests/unit/test_core/test_parallelism_utils.py
tests/unit/test_core/test_payload_spill.py
tests/unit/test_core/test_pipeline_tree_steps.py
tests/unit/test_core/test_prepare_runner_kwargs.py
tests/unit/test_core/test_probe_path_selectors_xpath.py
tests/unit/test_core/test_process_hashing.py
tests/unit/test_core/test_step_state_manager.py
tests/unit/test_core/test_step_system.py
tests/unit/test_managers/__init__.py
tests/unit/test_managers/test_reproducibility_manager.py
tests/unit/test_platform/test_dynamic_js_charts.py
tests/unit/test_platform/test_project_metadata_resilience.py
tests/unit/test_projects/test_custom_adapter_object_store.py
tests/unit/test_projects/test_new_project_layout.py
tests/unit/test_reporting/test_entrypoint.py
tests/unit/test_runtime/__init__.py
tests/unit/test_runtime/test_context.py
tests/unit/test_storage/__init__.py
tests/unit/test_storage/test_factory.py
tests/unit/test_storage/test_gcp_kv_store.py
tests/unit/test_storage/test_gcs_object_store.py
tests/unit/test_storage/test_sqlite_store.py
tests/unit/test_storage/test_step_state_manager_layout.py
tests/unit/test_web/test_chart_config.py