machineconfig 6.39__py3-none-any.whl → 6.42__py3-none-any.whl

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.

Potentially problematic release.


This version of machineconfig might be problematic. Click here for more details.

@@ -76,6 +76,9 @@ config = {this = '~/.docker/config.json', to_this = '~/dotfiles/creds/docker/con
76
76
 
77
77
  # =========================== PUBLIC ======================================
78
78
 
79
+ [marimo]
80
+ config = {this = '~/.config/marimo/marimo.toml', to_this = 'CONFIG_ROOT/settings/marimo/marimo.toml'}
81
+
79
82
  [presenterm]
80
83
  config = {this = '~/.config/presenterm/config.yaml', to_this = 'CONFIG_ROOT/settings/presenterm/config.yaml'}
81
84
 
@@ -9,7 +9,7 @@ import typer
9
9
  from machineconfig.utils.path_extended import PathExtended
10
10
  from machineconfig.utils.accessories import randstr
11
11
  import json
12
- import shutil
12
+ # import shutil
13
13
 
14
14
  from machineconfig.utils.options import choose_from_options
15
15
  from rich.console import Console
@@ -166,17 +166,17 @@ from pathlib import Path
166
166
  elif marimo:
167
167
  fire_line = f"""
168
168
  cd {str(pyfile.parent)}
169
- uv run --with marimo marimo convert {pyfile.name} -o marimo_nb.py
170
- uv run --with "marimo,machineconfig[plot]>=6.36" marimo edit marimo_nb.py
169
+ uv run --with marimo marimo convert {pyfile.name} -o marimo_nb.py
170
+ uv run --with "marimo,machineconfig[plot]>=6.42" marimo edit --host 0.0.0.0 marimo_nb.py
171
171
  """
172
172
  elif jupyter:
173
- fire_line = f"uv run --with 'machineconfig[plot]>=6.36' jupyter-lab {str(nb_target)}"
173
+ fire_line = f"uv run --with 'machineconfig[plot]>=6.42' jupyter-lab {str(nb_target)}"
174
174
  elif vscode:
175
175
  fire_line = f"""
176
176
  cd {str(pyfile.parent)}
177
177
  uv init --python 3.14
178
178
  uv venv
179
- uv add "machineconfig[plot]>=6.36"
179
+ uv add "machineconfig[plot]>=6.42"
180
180
  # code serve-web
181
181
  code --new-window {str(pyfile)}
182
182
  """
@@ -191,7 +191,7 @@ code --new-window {str(pyfile)}
191
191
  else:
192
192
  console.print(Panel("❌ Could not determine the local machineconfig repo root. Please ensure the `REPO_ROOT` in `source_of_truth.py` is correctly set to the local path of the machineconfig repo, or do not use the `--local` flag.", title="Error", border_style="red"))
193
193
  return
194
- else: ve_line = """--with "machineconfig[plot]>=6.36" """
194
+ else: ve_line = """--with "machineconfig[plot]>=6.42" """
195
195
  # ve_path_maybe, ipython_profile_maybe = get_ve_path_and_ipython_profile(Path.cwd())
196
196
  # --python 3.14
197
197
  fire_line = f"uv run {ve_line} {interpreter} {interactivity} {profile} {str(pyfile)}"
@@ -205,4 +205,9 @@ def main() -> None:
205
205
 
206
206
 
207
207
  if __name__ == "__main__":
208
+ # def func(flag: Annotated[bool, typer.Option("--flag/-nf", help="dummy flag for debugging", flag_value=False, is_flag=True)]=True):
209
+ # console.print(f"flag: {flag}")
210
+ # app = typer.Typer()
211
+ # app.command()(func)
212
+ # app()
208
213
  main()
@@ -42,7 +42,7 @@ def path():
42
42
  from pathlib import Path
43
43
  path = Path(navigator.__file__).resolve().parent.joinpath("path_manager_tui.py")
44
44
  from machineconfig.utils.code import run_shell_script
45
- run_shell_script(f"""uv run --with "machineconfig>=6.36,textual" {path}""")
45
+ run_shell_script(f"""uv run --with "machineconfig>=6.42,textual" {path}""")
46
46
 
47
47
  def pwsh_theme():
48
48
  """🔗 Select powershell prompt theme."""
@@ -13,34 +13,33 @@ from machineconfig.scripts.python.helpers_repos.secure_repo import main as secur
13
13
 
14
14
  DirectoryArgument = Annotated[Optional[str], typer.Argument(help="📁 Directory containing repo(s).")]
15
15
  RecursiveOption = Annotated[bool, typer.Option("--recursive", "-r", help="🔍 Recurse into nested repositories.")]
16
- NoSyncOption = Annotated[bool, typer.Option("--no-sync", help="🚫 Disable automatic uv sync after pulls.")]
16
+ UVsyncOption = Annotated[bool, typer.Option("--uv-sync/-ns", help="🚫 Disable automatic uv sync after pulls.")]
17
17
  CloudOption = Annotated[Optional[str], typer.Option("--cloud", "-c", help="☁️ Upload to or download from this cloud remote.")]
18
18
 
19
19
 
20
- def push(directory: DirectoryArgument = None, recursive: RecursiveOption = False, no_sync: NoSyncOption = False) -> None:
20
+ def push(directory: DirectoryArgument = None, recursive: RecursiveOption = False, uv_sync: UVsyncOption = True) -> None:
21
21
  """🚀 Push changes across repositories."""
22
22
  from machineconfig.scripts.python.repos_helpers.entrypoint import git_operations
23
- git_operations(directory, pull=False, commit=False, push=True, recursive=recursive, auto_uv_sync=not no_sync)
23
+ git_operations(directory, pull=False, commit=False, push=True, recursive=recursive, auto_uv_sync=uv_sync)
24
24
 
25
25
 
26
- def pull(directory: DirectoryArgument = None, recursive: RecursiveOption = False, no_sync: NoSyncOption = False) -> None:
26
+ def pull(directory: DirectoryArgument = None, recursive: RecursiveOption = False, uv_sync: UVsyncOption = True) -> None:
27
27
  """⬇️ Pull changes across repositories."""
28
28
  from machineconfig.scripts.python.repos_helpers.entrypoint import git_operations
29
29
 
30
- git_operations(directory, pull=True, commit=False, push=False, recursive=recursive, auto_uv_sync=not no_sync)
30
+ git_operations(directory, pull=True, commit=False, push=False, recursive=recursive, auto_uv_sync=uv_sync)
31
31
 
32
32
 
33
- def commit(directory: DirectoryArgument = None, recursive: RecursiveOption = False, no_sync: NoSyncOption = False) -> None:
33
+ def commit(directory: DirectoryArgument = None, recursive: RecursiveOption = False, uv_sync: UVsyncOption = True) -> None:
34
34
  """💾 Commit changes across repositories."""
35
35
  from machineconfig.scripts.python.repos_helpers.entrypoint import git_operations
36
- git_operations(directory, pull=False, commit=True, push=False, recursive=recursive, auto_uv_sync=not no_sync)
36
+ git_operations(directory, pull=False, commit=True, push=False, recursive=recursive, auto_uv_sync=uv_sync)
37
37
 
38
38
 
39
- def sync(directory: DirectoryArgument = None, recursive: RecursiveOption = False, no_sync: NoSyncOption = False) -> None:
39
+ def sync(directory: DirectoryArgument = None, recursive: RecursiveOption = False, uv_sync: UVsyncOption = True) -> None:
40
40
  """🔄 Pull, commit, and push changes across repositories."""
41
41
  from machineconfig.scripts.python.repos_helpers.entrypoint import git_operations
42
- print(f"no_sync is {no_sync}")
43
- git_operations(directory, pull=True, commit=True, push=True, recursive=recursive, auto_uv_sync=not no_sync)
42
+ git_operations(directory, pull=True, commit=True, push=True, recursive=recursive, auto_uv_sync=uv_sync)
44
43
 
45
44
 
46
45
  def capture(directory: DirectoryArgument = None, cloud: CloudOption = None) -> None:
@@ -3,7 +3,7 @@ import typer
3
3
  from typing import Optional, Annotated
4
4
 
5
5
 
6
- def update(copy_assets: Annotated[bool, typer.Option(..., "--copy-assets", "-c", help="Copy assets to the machine after the update. Default is True.")] = False):
6
+ def update(copy_assets: Annotated[bool, typer.Option("--copy-assets/-nc", help="Copy assets to the machine after the update")] = True):
7
7
  """🔄 UPDATE uv and machineconfig"""
8
8
  # from machineconfig.utils.source_of_truth import LIBRARY_ROOT
9
9
  # repo_root = LIBRARY_ROOT.parent.parent
@@ -54,9 +54,9 @@ def install():
54
54
  # main_public_from_parser()
55
55
  import platform
56
56
  if platform.system() == "Windows":
57
- run_shell_script(r"""$HOME\.local\bin\uv.exe tool install "machineconfig>=6.36" """)
57
+ run_shell_script(r"""$HOME\.local\bin\uv.exe tool install "machineconfig>=6.42" """)
58
58
  else:
59
- run_shell_script("""$HOME/.local/bin/uv tool install "machineconfig>=6.36" """)
59
+ run_shell_script("""$HOME/.local/bin/uv tool install "machineconfig>=6.42" """)
60
60
 
61
61
  def navigate():
62
62
  """📚 NAVIGATE command structure with TUI"""
@@ -64,7 +64,7 @@ def navigate():
64
64
  from pathlib import Path
65
65
  path = Path(navigator.__file__).resolve().parent.joinpath("devops_navigator.py")
66
66
  from machineconfig.utils.code import run_shell_script
67
- run_shell_script(f"""uv run --with "machineconfig>=6.36,textual" {path}""")
67
+ run_shell_script(f"""uv run --with "machineconfig>=6.42,textual" {path}""")
68
68
 
69
69
 
70
70
  def run_python(ip: Annotated[str, typer.Argument(..., help="Python command to run in the machineconfig environment")],
@@ -73,7 +73,7 @@ def download(url: Annotated[Optional[str], typer.Argument(..., help="The URL to
73
73
 
74
74
 
75
75
  def get_app() -> typer.Typer:
76
- app = typer.Typer(help="🛠️ [u] utilities operations", no_args_is_help=True, add_completion=True)
76
+ app = typer.Typer(help="🛠️ [u] utilities operations", no_args_is_help=True, add_completion=True)
77
77
  app.command(name="download", no_args_is_help=True, help="[d] Download a file from a URL and optionally decompress it.")(download)
78
78
  app.command(name="d", no_args_is_help=True, hidden=True)(download)
79
79
  return app
@@ -1,3 +1,13 @@
1
+ #!/usr/bin/env -S uv run --script
2
+ # /// script
3
+ # requires-python = ">=3.13"
4
+ # dependencies = [
5
+ # "machineconfig>=6.42",
6
+ # "textual",
7
+ # "pyperclip",
8
+ # ]
9
+ # ///
10
+
1
11
  """Cross-platform PATH explorer with Textual TUI."""
2
12
 
3
13
  from pathlib import Path
@@ -38,12 +38,14 @@ def main(
38
38
  repo_local_obj = git.Repo(repo_local_root, search_parent_directories=True)
39
39
  repo_local_root = PathExtended(repo_local_obj.working_dir) # cwd might have been in a sub directory of repo_root, so its better to redefine it.
40
40
  PathExtended(CONFIG_ROOT).joinpath("remote").mkdir(parents=True, exist_ok=True)
41
- repo_remote_root = PathExtended(CONFIG_ROOT).joinpath("remote", repo_local_root.rel2home()) # .delete(sure=True)
42
-
41
+ repo_remote_root = PathExtended(CONFIG_ROOT).joinpath("remote", repo_local_root.rel2home())
42
+ repo_remote_root.delete(sure=True)
43
43
  try:
44
44
  console.print(Panel("📥 DOWNLOADING REMOTE REPOSITORY", title_align="left", border_style="blue"))
45
45
  remote_path = repo_local_root.get_remote_path(rel2home=True, os_specific=False, root="myhome") + ".zip.enc"
46
- repo_remote_root.from_cloud(remotepath=remote_path, cloud=cloud_resolved, unzip=True, decrypt=True, rel2home=True, os_specific=False, pwd=pwd)
46
+ res = repo_remote_root.from_cloud(remotepath=remote_path, cloud=cloud_resolved, unzip=True, decrypt=True, rel2home=True, os_specific=False, pwd=pwd)
47
+ if res is None:
48
+ raise AssertionError("Remote repo does not exist.")
47
49
  except AssertionError:
48
50
  console.print(Panel("🆕 Remote repository doesn't exist\n📤 Creating new remote and exiting...", title_align="left", border_style="green"))
49
51
  repo_local_root.to_cloud(cloud=cloud_resolved, zip=True, encrypt=True, rel2home=True, pwd=pwd, os_specific=False)
@@ -101,7 +103,7 @@ git pull originEnc master
101
103
  return "done"
102
104
  from machineconfig.utils.meta import function_to_script
103
105
  program_1_py = function_to_script(func=func2, call_with_args=None, call_with_kwargs={"remote_repo": str(repo_remote_root), "local_repo": str(repo_local_root), "cloud": cloud_resolved})
104
- shell_file_1 = get_shell_file_executing_python_script(python_script=program_1_py, ve_path=None, executable="""uv run --with "machineconfig>=6.36" """)
106
+ shell_file_1 = get_shell_file_executing_python_script(python_script=program_1_py, ve_path=None, executable="""uv run --with "machineconfig>=6.42" """)
105
107
  # ================================================================================
106
108
  option2 = "Delete local repo and replace it with remote copy:"
107
109
  program_2 = f"""
@@ -122,7 +124,7 @@ sudo chmod +x $HOME/dotfiles/scripts/linux -R
122
124
  inspect_repos(repo_local_root=repo_local_root, repo_remote_root=repo_remote_root)
123
125
  return "done"
124
126
  program_3_py = function_to_script(func=func, call_with_args=None, call_with_kwargs={"repo_local_root": str(repo_local_root), "repo_remote_root": str(repo_remote_root)})
125
- shell_file_3 = get_shell_file_executing_python_script(python_script=program_3_py, ve_path=None, executable="""uv run --with "machineconfig>=6.36" """)
127
+ shell_file_3 = get_shell_file_executing_python_script(python_script=program_3_py, ve_path=None, executable="""uv run --with "machineconfig>=6.42" """)
126
128
  # ================================================================================
127
129
 
128
130
  option4 = "Remove problematic rclone file from repo and replace with remote:"
@@ -130,9 +130,9 @@ def execute_installations(selected_options: list[str]) -> None:
130
130
  console.print(Panel("🐍 [bold green]PYTHON ENVIRONMENT[/bold green]\n[italic]Virtual environment setup[/italic]", border_style="green"))
131
131
  import platform
132
132
  if platform.system() == "Windows":
133
- run_shell_script(r"""$HOME\.local\bin\uv.exe tool install "machineconfig>=6.36" """)
133
+ run_shell_script(r"""$HOME\.local\bin\uv.exe tool install "machineconfig>=6.42" """)
134
134
  else:
135
- run_shell_script("""$HOME/.local/bin/uv tool install "machineconfig>=6.36" """)
135
+ run_shell_script("""$HOME/.local/bin/uv tool install "machineconfig>=6.42" """)
136
136
  if "install_ssh_server" in selected_options:
137
137
  console.print(Panel("🔒 [bold red]SSH SERVER[/bold red]\n[italic]Remote access setup[/italic]", border_style="red"))
138
138
  import platform
@@ -5,7 +5,7 @@
5
5
  # mkdir ~/data/local
6
6
  # sudo mount -o nolock,noatime,nodiratime,proto=tcp,timeo=600,retrans=2,noac alex-p51s-5:/home/alex/data/local ./data/local
7
7
 
8
- uv run --python 3.14 --with "machineconfig>=6.36" python -m machineconfig.scripts.python.mount_nfs
8
+ uv run --python 3.14 --with "machineconfig>=6.42" python -m machineconfig.scripts.python.mount_nfs
9
9
  # Check if remote server is reachable and share folder exists
10
10
  if ! ping -c 1 "$remote_server" &> /dev/null; then
11
11
  echo "💥 Error: Remote server $remote_server is not reachable."
@@ -8,7 +8,7 @@ def analyze_repo_development(repo_path: Annotated[str, typer.Argument(..., help=
8
8
  from pathlib import Path
9
9
  count_lines_path = Path(count_lines.__file__)
10
10
  # --project $HOME/code/ machineconfig --group plot
11
- cmd = f"""uv run --python 3.14 --with "machineconfig[plot]>=6.36" {count_lines_path} analyze-over-time {repo_path}"""
11
+ cmd = f"""uv run --python 3.14 --with "machineconfig[plot]>=6.42" {count_lines_path} analyze-over-time {repo_path}"""
12
12
  from machineconfig.utils.code import run_shell_script
13
13
  run_shell_script(cmd)
14
14
 
@@ -7,7 +7,7 @@ $user = ''
7
7
  $sharePath = ''
8
8
  $driveLetter = ''
9
9
 
10
- uv run --python 3.14 --with "machineconfig>=6.36" python -m machineconfig.scripts.python.mount_ssh
10
+ uv run --python 3.14 --with "machineconfig>=6.42" python -m machineconfig.scripts.python.mount_ssh
11
11
 
12
12
  net use T: \\sshfs.kr\$user@$host.local
13
13
  # this worked: net use T: \\sshfs\alex@alex-p51s-5.local
@@ -0,0 +1,80 @@
1
+ [formatting]
2
+ line_length = 79
3
+
4
+ [completion]
5
+ copilot = false
6
+ activate_on_typing = true
7
+
8
+ [ai]
9
+ inline_tooltip = true
10
+ mode = "manual"
11
+ rules = ""
12
+
13
+ [ai.models]
14
+ chat_model = "github/gpt-4o-mini"
15
+ custom_models = []
16
+ displayed_models = []
17
+
18
+ [package_management]
19
+ manager = "uv"
20
+
21
+ [language_servers.basedpyright]
22
+
23
+ [language_servers.pylsp]
24
+ enabled = true
25
+ enable_pydocstyle = false
26
+ enable_ruff = true
27
+ enable_pyflakes = false
28
+ enable_pylint = false
29
+ enable_flake8 = false
30
+ enable_mypy = true
31
+
32
+ [language_servers.ty]
33
+
34
+ [server]
35
+ browser = "default"
36
+ follow_symlink = false
37
+
38
+ [runtime]
39
+ auto_instantiate = false
40
+ auto_reload = "off"
41
+ on_cell_change = "autorun"
42
+ output_max_bytes = 8000000
43
+ reactive_tests = true
44
+ default_auto_download = []
45
+ std_stream_max_bytes = 1000000
46
+ watcher_on_save = "lazy"
47
+ default_sql_output = "auto"
48
+
49
+ [display]
50
+ dataframes = "rich"
51
+ reference_highlighting = false
52
+ default_width = "full"
53
+ cell_output = "below"
54
+ theme = "dark"
55
+ default_table_max_columns = 50
56
+ code_editor_font_size = 14
57
+ default_table_page_size = 10
58
+
59
+ [mcp]
60
+ presets = []
61
+
62
+ [mcp.mcpServers]
63
+
64
+ [experimental]
65
+
66
+ [snippets]
67
+ custom_paths = []
68
+ include_default_snippets = true
69
+
70
+ [save]
71
+ format_on_save = false
72
+ autosave = "after_delay"
73
+ autosave_delay = 1000
74
+
75
+ [diagnostics]
76
+ sql_linter = true
77
+
78
+ [keymap]
79
+ destructive_delete = true
80
+ preset = "default"
@@ -1,7 +1,7 @@
1
1
  #!/bin/bash
2
2
  . <( curl -sSL "https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_linux/uv.sh")
3
3
  mcfg() {
4
- "$HOME/.local/bin/uv" run --python 3.14 --with "machineconfig>=6.36" mcfg "$@"
4
+ "$HOME/.local/bin/uv" run --python 3.14 --with "machineconfig>=6.42" mcfg "$@"
5
5
  }
6
6
  alias d="mcfg devops"
7
7
  alias c="mcfg cloud"
@@ -2,7 +2,7 @@
2
2
 
3
3
  iex (iwr "https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_windows/uv.ps1").Content
4
4
  function mcfg {
5
- & "$HOME\.local\bin\uv.exe" run --python 3.14 --with "machineconfig>=6.36" mcfg $args
5
+ & "$HOME\.local\bin\uv.exe" run --python 3.14 --with "machineconfig>=6.42" mcfg $args
6
6
  }
7
7
  function d { mcfg devops @args }
8
8
  function c { mcfg cloud @args }
@@ -6,7 +6,7 @@ from machineconfig.utils.terminal import Response, MACHINE
6
6
  from machineconfig.utils.accessories import pprint
7
7
 
8
8
  UV_RUN_CMD = "$HOME/.local/bin/uv run"
9
- MACHINECONFIG_VERSION = "machineconfig>=6.36"
9
+ MACHINECONFIG_VERSION = "machineconfig>=6.42"
10
10
  DEFAULT_PICKLE_SUBDIR = "tmp_results/tmp_scripts/ssh"
11
11
 
12
12
 
@@ -1,5 +1,18 @@
1
1
  """
2
+
2
3
  Generate uv add commands from pyproject.toml dependency groups.
4
+
5
+ #!/bin/bash
6
+ # rm ./pyproject.toml
7
+ rm ./uv.lock
8
+ rm -rfd .venv
9
+ uv venv --python 3.13
10
+ uv init
11
+ # Install main dependencies
12
+ uv add aiohttp aiosqlite asyncpg authlib binance-connector binance-futures-connector boto3 ccxt crocodile dataclasses-json exchanges httpx ipykernel ipython lightgbm machineconfig matplotlib mypy nbformat numba numpy objgraph onnx onnxruntime onnxscript orjson pandas "pandera[mypy]" plotext plotly polars prophet psycopg2-binary pybit pyright pyyaml "redis[hiredis]" requests rich ruff scikit-learn scipy shap skforecast sqlalchemy sqlmodel streamlit streamlit-option-menu ta tenacity tqdm visidata websockets wrapt-timeout-decorator
13
+ # Install dev dependencies
14
+ uv add --dev kaleido torch torchaudio torchinfo torchview torchvision types-python-dateutil types-pyyaml types-requests types-tqdm
15
+
3
16
  """
4
17
 
5
18
  from pathlib import Path
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: machineconfig
3
- Version: 6.39
3
+ Version: 6.42
4
4
  Summary: Dotfiles management package
5
5
  Author-email: Alex Al-Saffar <programmer@usa.com>
6
6
  License: Apache 2.0
@@ -98,7 +98,7 @@ machineconfig/profile/create_helper.py,sha256=_iNeuwmcEGTx6sf_f40JKHfOCuJRZQRpyE
98
98
  machineconfig/profile/create_links.py,sha256=K7T2bq08GZP9fo2NzCOE0pojAgQDe0Ofe7fNfbQlQpw,14219
99
99
  machineconfig/profile/create_links_export.py,sha256=6LW4ZzHhQaox6W-rAuw3_gENTVKmOXA8_JfVDA-Mfws,3294
100
100
  machineconfig/profile/create_shell_profile.py,sha256=Kxic1RPANP04uFbRuKMJmvkKdduuZ4Y6QNH0vpk0lYs,9888
101
- machineconfig/profile/mapper.toml,sha256=50q2VdR_PNLXGljH47R2cxuJvzlJQnq7lkJ05TMtJ5Q,12357
101
+ machineconfig/profile/mapper.toml,sha256=CGGKi4VbRo1-AuHU7w1g94NbAys0pxn6fI-2l-lUmY0,12469
102
102
  machineconfig/profile/records/generic/shares.toml,sha256=FduDztfyQtZcr5bfx-RSKhEEweweQSWfVXkKWnx8hCY,143
103
103
  machineconfig/profile/records/linux/apps_summary_report.csv,sha256=pw9djvaRUPalKDLn2sl3odcbD2_Zx3aEupsQ8UPfaaY,2738
104
104
  machineconfig/profile/records/linux/apps_summary_report.md,sha256=l77oofA6Rliql0ZgKGIZi8bstFoGyyGTxeS8p2PtOj0,5634
@@ -122,13 +122,13 @@ machineconfig/scripts/linux/other/switch_ip,sha256=NQfeKMBSbFY3eP6M-BadD-TQo5qMP
122
122
  machineconfig/scripts/python/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
123
123
  machineconfig/scripts/python/agents.py,sha256=f5UxgXjGlEypoNFqK0uHKO0UkbV_wUmPiPzotL2yapM,10677
124
124
  machineconfig/scripts/python/cloud.py,sha256=jwftTQGhIP39wIKHB1lQbcbmo2dMnWoTcs-Wly3Ql5U,1263
125
- machineconfig/scripts/python/croshell.py,sha256=QGn4m8Q-Ha9Ytmuf13lWrEAu1oRiREGOVGb9DXpTgUg,8813
125
+ machineconfig/scripts/python/croshell.py,sha256=eAmbfzcqMFVb8ObFdElxgI1dXfo3KtCNid3xOnkBadw,9071
126
126
  machineconfig/scripts/python/devops.py,sha256=NMiGkw5w3svn7mgxkfCd9jTiVlqQp6GglU8BmclYBQ8,2393
127
127
  machineconfig/scripts/python/devops_navigator.py,sha256=4O9_-ACeP748NcMjWQXZF7mBQpMPxqCGhLvPG3DMi4Q,236
128
128
  machineconfig/scripts/python/entry.py,sha256=Az7dK1eXHGW5l46Yg10Cd88VChCdhvLAzO3e1A3r56A,2176
129
129
  machineconfig/scripts/python/fire_jobs.py,sha256=O5DrckUGLxGblOcLf_iXU31pmCSpTg-c0hQZxQKD1os,13591
130
130
  machineconfig/scripts/python/ftpx.py,sha256=UBDP6IIfWkaML1uZT1FrfGUUy_Of5LI82IdqEzo05_U,9760
131
- machineconfig/scripts/python/interactive.py,sha256=4rzOmSsUUvqAKa8EAPjoGLDlL7LVN4P-6W6SEuUN9Ek,11820
131
+ machineconfig/scripts/python/interactive.py,sha256=Vnyj5MTynxluIMmo67ITDK7FbFdLPAt7WwHu6wL1tZQ,11820
132
132
  machineconfig/scripts/python/sessions.py,sha256=l0NhO8kLtpDHdvNTlZ-Stt0VqARZqKUqiJlKvGIqCC0,9778
133
133
  machineconfig/scripts/python/ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
134
134
  machineconfig/scripts/python/ai/generate_files.py,sha256=VfjKdwgF8O6E4oiRtfWNliibLmmwGe7f9ld6wpOsXTw,14498
@@ -174,15 +174,15 @@ machineconfig/scripts/python/croshell_helpers/start_slidev.py,sha256=HfJReOusTPh
174
174
  machineconfig/scripts/python/croshell_helpers/viewer.py,sha256=heQNjB9fwn3xxbPgMofhv1Lp6Vtkl76YjjexWWBM0pM,2041
175
175
  machineconfig/scripts/python/croshell_helpers/viewer_template.py,sha256=ve3Q1-iKhCLc0VJijKvAeOYp2xaFOeIOC_XW956GWCc,3944
176
176
  machineconfig/scripts/python/devops_helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
177
- machineconfig/scripts/python/devops_helpers/cli_config.py,sha256=B48SZzei0WG04GqvYfu3qyfcCIFqD3sfoXfcZJylYy4,5402
177
+ machineconfig/scripts/python/devops_helpers/cli_config.py,sha256=iQG8U9fNcDWcmBZ_lSM1_KqjDxRR8UsedKnhbLncnoo,5402
178
178
  machineconfig/scripts/python/devops_helpers/cli_config_dotfile.py,sha256=rjTys4FNf9_feP9flWM7Zvq17dxWmetSiGaHPxp25nk,2737
179
179
  machineconfig/scripts/python/devops_helpers/cli_data.py,sha256=2OWwp86-ncpGoSP9IblW7Jjej-wc-PuS8KRZ5xh0l1c,1774
180
180
  machineconfig/scripts/python/devops_helpers/cli_nw.py,sha256=1slGev50V3sHlVSt6mnFSV9faIzrnvtwXmJxnCnVJJ0,4131
181
- machineconfig/scripts/python/devops_helpers/cli_repos.py,sha256=DzOyxN-IFNT-LT7tJumHGqasJ5hVjTcrpSoBDD65ywA,12401
182
- machineconfig/scripts/python/devops_helpers/cli_self.py,sha256=iMHmfK1uIXot9hbM44Ocy8jr5_QgayrO7SvQ8PMIL2E,5739
181
+ machineconfig/scripts/python/devops_helpers/cli_repos.py,sha256=QKR5Ci6IS6tBanRKUdRaXp3BZ_p4tt8_pvQsozjPlHM,12350
182
+ machineconfig/scripts/python/devops_helpers/cli_self.py,sha256=FuNCwwHL-W-i4Rqpd88pUCqaRHtQb8DmxtuQBqJsh90,5713
183
183
  machineconfig/scripts/python/devops_helpers/cli_share_server.py,sha256=q9pFJ6AxPuygMr3onMNOKEuuQHbVE_6Qoyo7xRT5FX0,4196
184
184
  machineconfig/scripts/python/devops_helpers/cli_terminal.py,sha256=k_PzXaiGyE0vXr0Ii1XcJz2A7UvyPJrR31TRWt4RKRI,6019
185
- machineconfig/scripts/python/devops_helpers/cli_utils.py,sha256=hxQ2dgHPPJjFOK6KnVy-2Mjg60YKalvbVFGiq3kqtRA,3300
185
+ machineconfig/scripts/python/devops_helpers/cli_utils.py,sha256=7xw3IgMUH9hvAg40cipgY03qSkhVb72oE13b2HjfeiY,3299
186
186
  machineconfig/scripts/python/devops_helpers/devops_backup_retrieve.py,sha256=8VpnWytbJYdZZfeLmULgGeGuV5BlHrzdcbGtSsmU-EA,5598
187
187
  machineconfig/scripts/python/devops_helpers/devops_status.py,sha256=PJVPhfhXq8der6Xd-_fjZfnizfM-RGfJApkRGhGBmNo,20525
188
188
  machineconfig/scripts/python/devops_helpers/devops_update_repos.py,sha256=TLYhvMMDJCqLNsv1h4a0MtxYqQHWkRRvKnERyXd8MAs,10133
@@ -191,7 +191,7 @@ machineconfig/scripts/python/devops_helpers/themes/choose_pwsh_theme.ps1,sha256=
191
191
  machineconfig/scripts/python/devops_helpers/themes/choose_wezterm_theme.py,sha256=pRXAGe2IpysYshsaF8CKEwHI8EGPtLcM8PtiAqM7vmM,3425
192
192
  machineconfig/scripts/python/env_manager/__init__.py,sha256=E4LAHbU1wo2dLjE36ntv8U7QNTe8TasujUAYK9SLvWk,6
193
193
  machineconfig/scripts/python/env_manager/path_manager_backend.py,sha256=ZVGlGJALhg7zNABDdwXxL7MFbL2BXPebObipXSLGbic,1552
194
- machineconfig/scripts/python/env_manager/path_manager_tui.py,sha256=YAZb1KOVpkfTzwApk-KYPplwvDELeU62OIDdg82m-eQ,6748
194
+ machineconfig/scripts/python/env_manager/path_manager_tui.py,sha256=on9xF94mSri7wbDS4GCblVQE2ToIpMsDUg_xQpg4r7w,6919
195
195
  machineconfig/scripts/python/helper_navigator/__init__.py,sha256=6YBy1l9ISjHE0LctVwSRMV_OFq29FOInwXFN0Ff7owM,758
196
196
  machineconfig/scripts/python/helper_navigator/command_builder.py,sha256=tMIonhYPWpdPGaiGPRg8JDCvyW0h2uxL15uL_JyWsnk,4617
197
197
  machineconfig/scripts/python/helper_navigator/command_detail.py,sha256=i4MdiCOVaXdRmLqr4K-F1Mk1u93bl5heIN97cRPCnzg,1692
@@ -220,7 +220,7 @@ machineconfig/scripts/python/helpers_fire_command/fire_jobs_args_helper.py,sha25
220
220
  machineconfig/scripts/python/helpers_fire_command/fire_jobs_route_helper.py,sha256=4MrlCVijbx7GQyAN9s5LDh-7heSjMXYrXdqiP6uC3ug,5378
221
221
  machineconfig/scripts/python/helpers_fire_command/fire_jobs_streamlit_helper.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
222
222
  machineconfig/scripts/python/helpers_repos/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
223
- machineconfig/scripts/python/helpers_repos/cloud_repo_sync.py,sha256=9J-CR2OcbSSsyYufL_pye0DhuNbjtSpBZuX56p6Fbm8,9700
223
+ machineconfig/scripts/python/helpers_repos/cloud_repo_sync.py,sha256=pt3Z2rn6ypEzttCwXsDzzBfWkJZ5CmnvRT-8OouvbOg,9810
224
224
  machineconfig/scripts/python/helpers_repos/grource.py,sha256=zDKWAO24aA0HlpcKFgBH4Lh_eqWp9KTEqnbUnX6I2pk,14611
225
225
  machineconfig/scripts/python/helpers_repos/secure_repo.py,sha256=fW_GyHqWrpnf7nexHojfWHv4eLBa71IhVL_LSVMyGnE,1115
226
226
  machineconfig/scripts/python/nw/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -228,7 +228,7 @@ machineconfig/scripts/python/nw/add_ssh_key.py,sha256=9JLmWu8pE7PAL5VuCFd19iVEdC
228
228
  machineconfig/scripts/python/nw/devops_add_identity.py,sha256=aPjcHbTLhxYwWYcandyAHdwuO15ZBu3fB82u6bI0tMQ,3773
229
229
  machineconfig/scripts/python/nw/devops_add_ssh_key.py,sha256=CkIl85hZLtG9k7yXLSzqi88YrilHV4hIUWHAPBwxWjw,8922
230
230
  machineconfig/scripts/python/nw/mount_drive,sha256=zemKofv7hOmRN_V3qK0q580GkfWw3VdikyVVQyiu8j8,3514
231
- machineconfig/scripts/python/nw/mount_nfs,sha256=vrOo-PfRVM-lK70ppjVviq8FDaRhOT9BRcLvmwNp5Ec,1855
231
+ machineconfig/scripts/python/nw/mount_nfs,sha256=Pk1M4j5OuTuhnSjyCML48lF0WLexeUR9i_UCFy3pmuY,1855
232
232
  machineconfig/scripts/python/nw/mount_nfs.py,sha256=lOMDY4RS7tx8gsCazVR5tNNwFbaRyO2PJlnwBCDQgCM,3573
233
233
  machineconfig/scripts/python/nw/mount_nw_drive,sha256=BqjGBCbwe5ZAsZDO3L0zHhh_gJfZy1CYOcqXA4Y-WkQ,2262
234
234
  machineconfig/scripts/python/nw/mount_nw_drive.py,sha256=iru6AtnTyvyuk6WxlK5R4lDkuliVpPV5_uBTVVhXtjQ,1550
@@ -242,7 +242,7 @@ machineconfig/scripts/python/nw/wsl_windows_transfer.py,sha256=1ab9l-8MtAxofW5nG
242
242
  machineconfig/scripts/python/repos_helpers/action.py,sha256=M1Col8F4JEc20FCPSiELQ3PckbOL6i7YpxzfuAEtmSc,14894
243
243
  machineconfig/scripts/python/repos_helpers/clone.py,sha256=UULEG5xJuXlPGU0nqXH6U45jA9DOFqLw8B4iPytCwOQ,5471
244
244
  machineconfig/scripts/python/repos_helpers/count_lines.py,sha256=Q5c7b-DxvTlQmljoic7niTuiAVyFlwYvkVQ7uRJHiTo,16009
245
- machineconfig/scripts/python/repos_helpers/count_lines_frontend.py,sha256=SBVtfnL_EkBiN2GhgFHPOgBUXjWe5xtqB1bXyhM-f0M,607
245
+ machineconfig/scripts/python/repos_helpers/count_lines_frontend.py,sha256=t0yb7VO8SLNrKpyaYJ08OKG8MOljzubx_TPKV0LBZec,607
246
246
  machineconfig/scripts/python/repos_helpers/entrypoint.py,sha256=O6ges-eMnXroIi14PszUWGD1-ITP4T0x7hk060rFT1k,2810
247
247
  machineconfig/scripts/python/repos_helpers/record.py,sha256=FQo0swuJZOp0I2XGK-t1OQU4zJHmQ2z9zTpDD30Tmg4,11001
248
248
  machineconfig/scripts/python/repos_helpers/sync.py,sha256=CLLWy2n2gY9beXPF-mblOQ6R7cKoenkJjMiX7tHQsBk,3091
@@ -255,7 +255,7 @@ machineconfig/scripts/windows/fzfrga.bat,sha256=rU_KBMO6ii2EZ0akMnmDk9vpuhKSUZqk
255
255
  machineconfig/scripts/windows/mounts/mount_nfs.ps1,sha256=XrAdzpxE6a4OccSmWJ7YWHJTnsZK8uXnFE5j9GOPA20,2026
256
256
  machineconfig/scripts/windows/mounts/mount_nw.ps1,sha256=puxcfZc3ZCJerm8pj8OZGVoTYkhzp-h7oV-MrksSqIE,454
257
257
  machineconfig/scripts/windows/mounts/mount_smb.ps1,sha256=PzYWpIO9BpwXjdWlUQL9pnMRnOGNSkxfh4bHukJFme8,69
258
- machineconfig/scripts/windows/mounts/mount_ssh.ps1,sha256=YD5Pt0ncHV5Y_0pAH3hYcLuKS_y4YuGGIXT4I4IFuaU,322
258
+ machineconfig/scripts/windows/mounts/mount_ssh.ps1,sha256=Rqkgf6PiBumc2slu1mlDOh999rDo8484m6pmP2FKwpQ,322
259
259
  machineconfig/scripts/windows/mounts/share_cloud.cmd,sha256=exD7JCdxw2LqVjw2MKCYHbVZlEqmelXtwnATng-dhJ4,1028
260
260
  machineconfig/scripts/windows/mounts/share_smb.ps1,sha256=U7x8ULYSjbgzTtiHNSKQuTaZ_apilDvkGV5Xm5hXk5M,384
261
261
  machineconfig/scripts/windows/mounts/unlock_bitlocker.ps1,sha256=Wv-SLscdckV-1mG3p82VXKPY9zW3hgkRmcLUXIZ1daE,253
@@ -315,6 +315,7 @@ machineconfig/settings/lvim/linux/config.lua,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRk
315
315
  machineconfig/settings/lvim/windows/config.lua,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
316
316
  machineconfig/settings/lvim/windows/archive/config_additional.lua,sha256=EM__UsSkXDIIN7tIdMV-tkQV4z_jUmDCmHhjamEyiUA,651
317
317
  machineconfig/settings/lvim/windows/lua/user/custom_config.lua,sha256=wbSm8cZubnPfUhYDmd5HKYnVRZUYVj701FBax2ZgjtE,269
318
+ machineconfig/settings/marimo/marimo.toml,sha256=R4osbRG-XDeQBgY1oLlk3hi5e0PU_RNc8O7UitQ7mw4,1282
318
319
  machineconfig/settings/mprocs/windows/mprocs.yaml,sha256=qn_bPy8eSWMAlhA9PLVO_vxqlSlzzrQ1CldFjSKpLD4,864
319
320
  machineconfig/settings/mprocs/windows/other,sha256=gIRC6swgxOmXAWEJPCOKmAdDfmLQ2-Vh9A1vsj0atAY,276
320
321
  machineconfig/settings/pistol/pistol.conf,sha256=zjhSJDA3X1TDLRfimnVgJT_Dt54lDJc5hlTBB649d5A,378
@@ -370,7 +371,7 @@ machineconfig/setup_linux/others/mint_keyboard_shortcuts.sh,sha256=F5dbg0n9RHsKG
370
371
  machineconfig/setup_linux/ssh/openssh_all.sh,sha256=3dg6HEUFbHQOzLfSAtzK_D_GB8rGCCp_aBnxNdnidVc,824
371
372
  machineconfig/setup_linux/ssh/openssh_wsl.sh,sha256=1eeRGrloVB34K5z8yWVUMG5b9pV-WBfHgV9jqXiYgCQ,1398
372
373
  machineconfig/setup_linux/web_shortcuts/android.sh,sha256=gzep6bBhK7FCBvGcXK0fdJCtkSfBOftt0aFyDZq_eMs,68
373
- machineconfig/setup_linux/web_shortcuts/interactive.sh,sha256=fHhoNbuNz7NOriXe8MLOnh5Nk7YsrNeu5xxWjzQ1jNE,442
374
+ machineconfig/setup_linux/web_shortcuts/interactive.sh,sha256=sOHi5onoRkWvISdicGYjpWjWlPNL-CiPOA6Rscr2oSQ,442
374
375
  machineconfig/setup_windows/__init__.py,sha256=NnSVZkIBoxoMgkj-_KAqGonH3YziBIWXOKDEcmNAGTY,386
375
376
  machineconfig/setup_windows/apps.ps1,sha256=dmZQZD4ZlNZo9jYkjIS3ag4qDAYZvaLysjmo9ELwBA4,11218
376
377
  machineconfig/setup_windows/uv.ps1,sha256=ukk1Abh-q-RfpoEqI2XTE2dcQJmHk0VFF6WqkK3TW8Q,350
@@ -380,7 +381,7 @@ machineconfig/setup_windows/others/power_options.ps1,sha256=c7Hn94jBD5GWF29CxMhm
380
381
  machineconfig/setup_windows/ssh/add-sshkey.ps1,sha256=qfPdqCpd9KP3VhH4ifsUm1Xvec7c0QVl4Wt8JIAm9HQ,1653
381
382
  machineconfig/setup_windows/ssh/add_identity.ps1,sha256=b8ZXpmNUSw3IMYvqSY7ClpdWPG39FS7MefoWnRhWN2U,506
382
383
  machineconfig/setup_windows/ssh/openssh-server.ps1,sha256=OMlYQdvuJQNxF5EILLPizB6BZAT3jAmDsv1WcVVxpFQ,2529
383
- machineconfig/setup_windows/web_shortcuts/interactive.ps1,sha256=JrQOheE3EzH3d82INdJSfgkZUg93hTs996D8tsSYUkI,548
384
+ machineconfig/setup_windows/web_shortcuts/interactive.ps1,sha256=mnJn0Itn33qaCQaYbqaHE21wCAqW3avXcAWzQXkbrFc,548
384
385
  machineconfig/setup_windows/wt_and_pwsh/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
385
386
  machineconfig/setup_windows/wt_and_pwsh/set_wt_settings.py,sha256=ogxJnwpdcpH7N6dFJu95UCNoGYirZKQho_3X0F_hmXs,6791
386
387
  machineconfig/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -398,10 +399,10 @@ machineconfig/utils/procs.py,sha256=rw8LR8MjGgvtrpcgxb3hudq2B9fkkpYUXe9x5-FgHuc,
398
399
  machineconfig/utils/scheduler.py,sha256=Uk6VT-gG7cOevnsKRcQPobTdr5zUZF0kLkdieByReMU,15749
399
400
  machineconfig/utils/scheduling.py,sha256=RF1iXJpqf4Dg18jdZWtBixz97KAHC6VKYqTFSpdLWuc,11188
400
401
  machineconfig/utils/source_of_truth.py,sha256=ZAnCRltiM07ig--P6g9_6nEAvNFC4X4ERFTVcvpIYsE,764
401
- machineconfig/utils/ssh.py,sha256=6Iy3Zlq3ByY_tafiVkRBLIB5Bi-5Eoyb675MsSP3xgw,39079
402
+ machineconfig/utils/ssh.py,sha256=SZhlRYNeAu1vLNBUt08hQlKN1Ds9JDD-PwwDqEvuql0,39079
402
403
  machineconfig/utils/terminal.py,sha256=IlmOByfQG-vjhaFFxxzU5rWzP5_qUzmalRfuey3PAmc,11801
403
404
  machineconfig/utils/tst.py,sha256=6u1GI49NdcpxH2BYGAusNfY5q9G_ytCGVzFM5b6HYpM,674
404
- machineconfig/utils/upgrade_packages.py,sha256=H96zVJEWXJW07nh5vhjuSCrPtXGqoUb7xeJsFYYdmCI,3330
405
+ machineconfig/utils/upgrade_packages.py,sha256=mSFyKvB3JhHte_x1dtmEgrJZCAXgTUQoaJUSx1OXQ3Y,4145
405
406
  machineconfig/utils/ve.py,sha256=L-6PBXnQGXThiwWgheJMQoisAZOZA6SVCbGw2J-GFnI,2414
406
407
  machineconfig/utils/ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
407
408
  machineconfig/utils/cloud/onedrive/README.md,sha256=i20oRG110AN0yLF3DARHfWXDJjPBiSgWI8CP2HQAqrk,3774
@@ -427,8 +428,8 @@ machineconfig/utils/schemas/installer/installer_types.py,sha256=QClRY61QaduBPJoS
427
428
  machineconfig/utils/schemas/layouts/layout_types.py,sha256=TcqlZdGVoH8htG5fHn1KWXhRdPueAcoyApppZsPAPto,2020
428
429
  machineconfig/utils/schemas/repos/repos_types.py,sha256=ECVr-3IVIo8yjmYmVXX2mnDDN1SLSwvQIhx4KDDQHBQ,405
429
430
  machineconfig/utils/ssh_utils/utils.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
430
- machineconfig-6.39.dist-info/METADATA,sha256=h45L-aED_75AZ7TbztQtJ9swgkS8dz7UkX6CqT8ZDYk,2928
431
- machineconfig-6.39.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
432
- machineconfig-6.39.dist-info/entry_points.txt,sha256=M0jwN_brZdXWhmNVeXLvdKxfkv8WhhXFZYcuKBA9qnk,418
433
- machineconfig-6.39.dist-info/top_level.txt,sha256=porRtB8qms8fOIUJgK-tO83_FeH6Bpe12oUVC670teA,14
434
- machineconfig-6.39.dist-info/RECORD,,
431
+ machineconfig-6.42.dist-info/METADATA,sha256=Tk4BH-r5H4JuAJYKBohrn54ff4uZJXuyuzB1LEeAMCM,2928
432
+ machineconfig-6.42.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
433
+ machineconfig-6.42.dist-info/entry_points.txt,sha256=M0jwN_brZdXWhmNVeXLvdKxfkv8WhhXFZYcuKBA9qnk,418
434
+ machineconfig-6.42.dist-info/top_level.txt,sha256=porRtB8qms8fOIUJgK-tO83_FeH6Bpe12oUVC670teA,14
435
+ machineconfig-6.42.dist-info/RECORD,,