machineconfig 5.51__py3-none-any.whl → 5.53__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.
- machineconfig/profile/mapper.toml +0 -8
- machineconfig/scripts/python/agents.py +2 -2
- machineconfig/scripts/python/croshell.py +1 -1
- machineconfig/scripts/python/ftpx.py +4 -1
- machineconfig/scripts/python/nw/mount_nfs +1 -1
- machineconfig/scripts/windows/mounts/mount_ssh.ps1 +1 -1
- machineconfig/setup_windows/web_shortcuts/interactive.ps1 +0 -6
- {machineconfig-5.51.dist-info → machineconfig-5.53.dist-info}/METADATA +1 -2
- {machineconfig-5.51.dist-info → machineconfig-5.53.dist-info}/RECORD +12 -12
- {machineconfig-5.51.dist-info → machineconfig-5.53.dist-info}/WHEEL +0 -0
- {machineconfig-5.51.dist-info → machineconfig-5.53.dist-info}/entry_points.txt +0 -0
- {machineconfig-5.51.dist-info → machineconfig-5.53.dist-info}/top_level.txt +0 -0
|
@@ -258,11 +258,3 @@ notepadpp = {this = '~/AppData/Local/Microsoft/WindowsApps/notepad++.exe', to_th
|
|
|
258
258
|
# tesseract = {this = '~/AppData/Local/Microsoft/WindowsApps/tesseract.exe', to_this = '~/AppData/Local/Tesseract-OCR/tesseract.exe'} # doesn't work without whole installation dir is on PATH.
|
|
259
259
|
|
|
260
260
|
|
|
261
|
-
[scripts_linux]
|
|
262
|
-
public = {this = '~/scripts', to_this = 'CONFIG_ROOT/scripts/linux'}
|
|
263
|
-
|
|
264
|
-
[scripts_windows]
|
|
265
|
-
public = {this = '~/scripts', to_this = 'CONFIG_ROOT/scripts/windows'}
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
@@ -102,8 +102,8 @@ def create(
|
|
|
102
102
|
job_name=job_name)
|
|
103
103
|
layoutfile = get_agents_launch_layout(session_root=agents_dir)
|
|
104
104
|
regenerate_py_code = f"""
|
|
105
|
-
#!/usr/bin/env uv run --python 3.
|
|
106
|
-
|
|
105
|
+
#!/usr/bin/env uv run --python 3.14 --with machineconfig
|
|
106
|
+
agents create --context-path "{prompt_material_path}" \\
|
|
107
107
|
--{search_strategy} "{context_path or keyword_search or filename_pattern}" \\
|
|
108
108
|
--prompt-path "{prompt_path or ''}" \\
|
|
109
109
|
--agent "{agent_selected}" \\
|
|
@@ -151,7 +151,7 @@ from pathlib import Path
|
|
|
151
151
|
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"))
|
|
152
152
|
return
|
|
153
153
|
else: ve_line = "--with machineconfig[plot]"
|
|
154
|
-
fire_line = f"uv run --python 3.
|
|
154
|
+
fire_line = f"uv run --python 3.14 {ve_line} {interpreter} {interactivity} {profile} {str(pyfile)}"
|
|
155
155
|
|
|
156
156
|
from machineconfig.utils.code import run_shell_script
|
|
157
157
|
run_shell_script(fire_line, clean_env=False)
|
|
@@ -212,7 +212,10 @@ def main(
|
|
|
212
212
|
|
|
213
213
|
def main_from_parser() -> None:
|
|
214
214
|
"""Entry point function that uses typer to parse arguments and call main."""
|
|
215
|
-
typer.run(main)
|
|
215
|
+
# typer.run(main)
|
|
216
|
+
app = typer.Typer()
|
|
217
|
+
app.command(no_args_is_help=True, help="File transfer utility though SSH.")(main)
|
|
218
|
+
app()
|
|
216
219
|
|
|
217
220
|
|
|
218
221
|
if __name__ == "__main__":
|
|
@@ -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.
|
|
8
|
+
uv run --python 3.14 --with machineconfig 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."
|
|
@@ -7,7 +7,7 @@ $user = ''
|
|
|
7
7
|
$sharePath = ''
|
|
8
8
|
$driveLetter = ''
|
|
9
9
|
|
|
10
|
-
uv run --python 3.
|
|
10
|
+
uv run --python 3.14 --with machineconfig 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
|
|
@@ -32,9 +32,3 @@ function sessions {
|
|
|
32
32
|
function kill_process {
|
|
33
33
|
& "$HOME\.local\bin\uv.exe" run --python 3.13 --with machineconfig kill_process $args
|
|
34
34
|
}
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
# DONT use this line in combination with activated virtual enviroment.
|
|
38
|
-
# $env:Path = [System.Environment]::GetEnvironmentVariable("Path", "Machine") + ";" + [System.Environment]::GetEnvironmentVariable("Path", "User")
|
|
39
|
-
# uv run --python 3.13 --no-dev --with machineconfig start_slidev $args
|
|
40
|
-
# uv run --python 3.13 --no-dev --with machineconfig pomodoro $args
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: machineconfig
|
|
3
|
-
Version: 5.
|
|
3
|
+
Version: 5.53
|
|
4
4
|
Summary: Dotfiles management package
|
|
5
5
|
Author-email: Alex Al-Saffar <programmer@usa.com>
|
|
6
6
|
License: Apache 2.0
|
|
@@ -26,7 +26,6 @@ Requires-Dist: rclone-python>=0.1.23
|
|
|
26
26
|
Requires-Dist: pyjson5>=1.6.9
|
|
27
27
|
Requires-Dist: questionary>=2.1.1
|
|
28
28
|
Requires-Dist: typer-slim>=0.19.2
|
|
29
|
-
Requires-Dist: euporie>=2.8.14
|
|
30
29
|
Requires-Dist: typer>=0.19.2
|
|
31
30
|
Provides-Extra: windows
|
|
32
31
|
Requires-Dist: pywin32; extra == "windows"
|
|
@@ -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=OEmuJE-F7FZX5xvOl1rqJzHg_BWtPKCiWdrq4RPOobs,3173
|
|
100
100
|
machineconfig/profile/create_shell_profile.py,sha256=ifsEAK90ovvY7ftyxuY5-Xh8f2JuQYX7IMYUXp6x2Sw,9538
|
|
101
|
-
machineconfig/profile/mapper.toml,sha256=
|
|
101
|
+
machineconfig/profile/mapper.toml,sha256=_CcjmqS0i6F6Cy1ru35heXCgcuei1dr1UIa3Ar_FlII,12716
|
|
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
|
|
@@ -120,13 +120,13 @@ machineconfig/scripts/linux/other/share_smb,sha256=HZX8BKgMlS9JzkGIYnxTsPvoxEBBu
|
|
|
120
120
|
machineconfig/scripts/linux/other/start_docker,sha256=_yDN_PPqgzSUnPT7dmniMTpL4IfeeaGy1a2OL3IJlDU,525
|
|
121
121
|
machineconfig/scripts/linux/other/switch_ip,sha256=NQfeKMBSbFY3eP6M-BadD-TQo5qMP96DTp77KHk2tU8,613
|
|
122
122
|
machineconfig/scripts/python/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
123
|
-
machineconfig/scripts/python/agents.py,sha256=
|
|
123
|
+
machineconfig/scripts/python/agents.py,sha256=mFVAnOdWVDoZTdRjLansS5-MGbCKkqDiGseRmXsU6B0,10478
|
|
124
124
|
machineconfig/scripts/python/cloud.py,sha256=kRH9Pt1yEkASFskIVEgRmkidrksdkgv2-bBmjLSxzSo,814
|
|
125
|
-
machineconfig/scripts/python/croshell.py,sha256=
|
|
125
|
+
machineconfig/scripts/python/croshell.py,sha256=GfqDkXdHCGDLCoHIHyJV2sqMrqhCWaOWB2FXKy2T0cw,7184
|
|
126
126
|
machineconfig/scripts/python/devops.py,sha256=SilJAQXAPBKXjF91zcpJV9YRS721M5UPbXdtv6f5NKQ,1479
|
|
127
127
|
machineconfig/scripts/python/devops_navigator.py,sha256=JYRKB8pVK5gyxcsrEYPC4IvUeX7rP4eMIkaattt8_t0,35090
|
|
128
128
|
machineconfig/scripts/python/fire_jobs.py,sha256=l2qByVK2rxWDUGFliU3HYwrtAI1XsUvOtcGLX4DUA5U,13689
|
|
129
|
-
machineconfig/scripts/python/ftpx.py,sha256=
|
|
129
|
+
machineconfig/scripts/python/ftpx.py,sha256=IoopsHQavcvLqVEDjaDnmfVJHtYgJaEX-B6r84VIO-Y,9445
|
|
130
130
|
machineconfig/scripts/python/interactive.py,sha256=IRveYja_9omEEhRyM1M6_SlljPY2Eo_GGoK9tTi1nsk,11778
|
|
131
131
|
machineconfig/scripts/python/sessions.py,sha256=lO_aTnh7T05XoCa8Ox-ROAWBKMtbo-DZzlFDUqzSipM,8716
|
|
132
132
|
machineconfig/scripts/python/ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -212,7 +212,7 @@ machineconfig/scripts/python/helpers_repos/grource.py,sha256=IywQ1NDPcLXM5Tr9xhm
|
|
|
212
212
|
machineconfig/scripts/python/helpers_repos/secure_repo.py,sha256=G_quiKOLNkWD5UG8ekexgh9xbpW4Od-J1pLJbLLWnpg,993
|
|
213
213
|
machineconfig/scripts/python/nw/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
214
214
|
machineconfig/scripts/python/nw/mount_drive,sha256=zemKofv7hOmRN_V3qK0q580GkfWw3VdikyVVQyiu8j8,3514
|
|
215
|
-
machineconfig/scripts/python/nw/mount_nfs,sha256=
|
|
215
|
+
machineconfig/scripts/python/nw/mount_nfs,sha256=tdFpYuJ2l2EYCgjYRBJRA8xKkALJcC_u7i8wSGY1UKg,1847
|
|
216
216
|
machineconfig/scripts/python/nw/mount_nfs.py,sha256=aECrL64j9g-9rF49sVJAjGmzaoGgcMnl3g9v17kQF4c,3239
|
|
217
217
|
machineconfig/scripts/python/nw/mount_nw_drive,sha256=BqjGBCbwe5ZAsZDO3L0zHhh_gJfZy1CYOcqXA4Y-WkQ,2262
|
|
218
218
|
machineconfig/scripts/python/nw/mount_nw_drive.py,sha256=iru6AtnTyvyuk6WxlK5R4lDkuliVpPV5_uBTVVhXtjQ,1550
|
|
@@ -237,7 +237,7 @@ machineconfig/scripts/windows/fzfrga.bat,sha256=rU_KBMO6ii2EZ0akMnmDk9vpuhKSUZqk
|
|
|
237
237
|
machineconfig/scripts/windows/mounts/mount_nfs.ps1,sha256=XrAdzpxE6a4OccSmWJ7YWHJTnsZK8uXnFE5j9GOPA20,2026
|
|
238
238
|
machineconfig/scripts/windows/mounts/mount_nw.ps1,sha256=puxcfZc3ZCJerm8pj8OZGVoTYkhzp-h7oV-MrksSqIE,454
|
|
239
239
|
machineconfig/scripts/windows/mounts/mount_smb.ps1,sha256=PzYWpIO9BpwXjdWlUQL9pnMRnOGNSkxfh4bHukJFme8,69
|
|
240
|
-
machineconfig/scripts/windows/mounts/mount_ssh.ps1,sha256=
|
|
240
|
+
machineconfig/scripts/windows/mounts/mount_ssh.ps1,sha256=AAp0gTUfzMmP-q82NvouzDG6uy8GZ8eFNS_kXCYH91Q,314
|
|
241
241
|
machineconfig/scripts/windows/mounts/share_cloud.cmd,sha256=exD7JCdxw2LqVjw2MKCYHbVZlEqmelXtwnATng-dhJ4,1028
|
|
242
242
|
machineconfig/scripts/windows/mounts/share_smb.ps1,sha256=U7x8ULYSjbgzTtiHNSKQuTaZ_apilDvkGV5Xm5hXk5M,384
|
|
243
243
|
machineconfig/scripts/windows/mounts/unlock_bitlocker.ps1,sha256=Wv-SLscdckV-1mG3p82VXKPY9zW3hgkRmcLUXIZ1daE,253
|
|
@@ -362,7 +362,7 @@ machineconfig/setup_windows/others/power_options.ps1,sha256=c7Hn94jBD5GWF29CxMhm
|
|
|
362
362
|
machineconfig/setup_windows/ssh/add-sshkey.ps1,sha256=qfPdqCpd9KP3VhH4ifsUm1Xvec7c0QVl4Wt8JIAm9HQ,1653
|
|
363
363
|
machineconfig/setup_windows/ssh/add_identity.ps1,sha256=b8ZXpmNUSw3IMYvqSY7ClpdWPG39FS7MefoWnRhWN2U,506
|
|
364
364
|
machineconfig/setup_windows/ssh/openssh-server.ps1,sha256=OMlYQdvuJQNxF5EILLPizB6BZAT3jAmDsv1WcVVxpFQ,2529
|
|
365
|
-
machineconfig/setup_windows/web_shortcuts/interactive.ps1,sha256=
|
|
365
|
+
machineconfig/setup_windows/web_shortcuts/interactive.ps1,sha256=K3I88Vkdb_YIT1bvX1-p_LBPRP7wYNeo43-2Pzcu5kk,979
|
|
366
366
|
machineconfig/setup_windows/wt_and_pwsh/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
367
367
|
machineconfig/setup_windows/wt_and_pwsh/set_wt_settings.py,sha256=ogxJnwpdcpH7N6dFJu95UCNoGYirZKQho_3X0F_hmXs,6791
|
|
368
368
|
machineconfig/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -403,8 +403,8 @@ machineconfig/utils/schemas/fire_agents/fire_agents_input.py,sha256=Xbi59rU35AzR
|
|
|
403
403
|
machineconfig/utils/schemas/installer/installer_types.py,sha256=QClRY61QaduBPJoSpdmTIdgS9LS-RvE-QZ-D260tD3o,1214
|
|
404
404
|
machineconfig/utils/schemas/layouts/layout_types.py,sha256=TcqlZdGVoH8htG5fHn1KWXhRdPueAcoyApppZsPAPto,2020
|
|
405
405
|
machineconfig/utils/schemas/repos/repos_types.py,sha256=ECVr-3IVIo8yjmYmVXX2mnDDN1SLSwvQIhx4KDDQHBQ,405
|
|
406
|
-
machineconfig-5.
|
|
407
|
-
machineconfig-5.
|
|
408
|
-
machineconfig-5.
|
|
409
|
-
machineconfig-5.
|
|
410
|
-
machineconfig-5.
|
|
406
|
+
machineconfig-5.53.dist-info/METADATA,sha256=pAO7soXuv5ta5ZOcrcZeP8hpPZQE0W_6UD3KdtLp-rk,3103
|
|
407
|
+
machineconfig-5.53.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
408
|
+
machineconfig-5.53.dist-info/entry_points.txt,sha256=z7b9guivf0GSKUG6b8ALgbDoRg2LuPfkGP_p-PxgX9g,469
|
|
409
|
+
machineconfig-5.53.dist-info/top_level.txt,sha256=porRtB8qms8fOIUJgK-tO83_FeH6Bpe12oUVC670teA,14
|
|
410
|
+
machineconfig-5.53.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|