xmipp3-installer 1.0.0__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.
- xmipp3_installer/__init__.py +1 -0
- xmipp3_installer/__main__.py +6 -0
- xmipp3_installer/api_client/api_client.py +50 -0
- xmipp3_installer/api_client/assembler/installation_info_assembler.py +181 -0
- xmipp3_installer/application/__init__.py +1 -0
- xmipp3_installer/application/cli/__init__.py +1 -0
- xmipp3_installer/application/cli/arguments/__init__.py +8 -0
- xmipp3_installer/application/cli/arguments/modes.py +130 -0
- xmipp3_installer/application/cli/arguments/params.py +76 -0
- xmipp3_installer/application/cli/cli.py +271 -0
- xmipp3_installer/application/cli/parsers/base_help_formatter.py +244 -0
- xmipp3_installer/application/cli/parsers/error_handler_parser.py +68 -0
- xmipp3_installer/application/cli/parsers/format.py +35 -0
- xmipp3_installer/application/cli/parsers/general_help_formatter.py +92 -0
- xmipp3_installer/application/cli/parsers/mode_help_formatter.py +115 -0
- xmipp3_installer/application/logger/__init__.py +0 -0
- xmipp3_installer/application/logger/errors.py +28 -0
- xmipp3_installer/application/logger/logger.py +230 -0
- xmipp3_installer/application/logger/predefined_messages.py +66 -0
- xmipp3_installer/application/user_interactions.py +16 -0
- xmipp3_installer/installer/__init__.py +1 -0
- xmipp3_installer/installer/constants/__init__.py +17 -0
- xmipp3_installer/installer/constants/paths.py +32 -0
- xmipp3_installer/installer/handlers/__init__.py +1 -0
- xmipp3_installer/installer/handlers/cmake/__init__.py +1 -0
- xmipp3_installer/installer/handlers/cmake/cmake_constants.py +27 -0
- xmipp3_installer/installer/handlers/cmake/cmake_handler.py +69 -0
- xmipp3_installer/installer/handlers/conda_handler.py +13 -0
- xmipp3_installer/installer/handlers/generic_package_handler.py +18 -0
- xmipp3_installer/installer/handlers/git_handler.py +185 -0
- xmipp3_installer/installer/handlers/shell_handler.py +114 -0
- xmipp3_installer/installer/handlers/versions_manager.py +98 -0
- xmipp3_installer/installer/installer_service.py +66 -0
- xmipp3_installer/installer/modes/__init__.py +1 -0
- xmipp3_installer/installer/modes/mode_all_executor.py +63 -0
- xmipp3_installer/installer/modes/mode_clean/__init__.py +1 -0
- xmipp3_installer/installer/modes/mode_clean/mode_clean_all_executor.py +44 -0
- xmipp3_installer/installer/modes/mode_clean/mode_clean_bin_executor.py +94 -0
- xmipp3_installer/installer/modes/mode_clean/mode_clean_executor.py +45 -0
- xmipp3_installer/installer/modes/mode_cmake/__init__.py +1 -0
- xmipp3_installer/installer/modes/mode_cmake/mode_cmake_executor.py +55 -0
- xmipp3_installer/installer/modes/mode_cmake/mode_compile_and_install_executor.py +49 -0
- xmipp3_installer/installer/modes/mode_cmake/mode_config_build_executor.py +64 -0
- xmipp3_installer/installer/modes/mode_config_executor.py +46 -0
- xmipp3_installer/installer/modes/mode_executor.py +43 -0
- xmipp3_installer/installer/modes/mode_get_sources_executor.py +132 -0
- xmipp3_installer/installer/modes/mode_git_executor.py +41 -0
- xmipp3_installer/installer/modes/mode_selector.py +25 -0
- xmipp3_installer/installer/modes/mode_sync/mode_add_model_executor.py +104 -0
- xmipp3_installer/installer/modes/mode_sync/mode_get_models_executor.py +51 -0
- xmipp3_installer/installer/modes/mode_sync/mode_sync_executor.py +48 -0
- xmipp3_installer/installer/modes/mode_sync/mode_test_executor.py +91 -0
- xmipp3_installer/installer/modes/mode_version_executor.py +164 -0
- xmipp3_installer/installer/orquestrator.py +37 -0
- xmipp3_installer/installer/urls.py +8 -0
- xmipp3_installer/repository/__init__.py +1 -0
- xmipp3_installer/repository/config.py +241 -0
- xmipp3_installer/repository/config_vars/__init__.py +0 -0
- xmipp3_installer/repository/config_vars/config_values_adapter.py +107 -0
- xmipp3_installer/repository/config_vars/default_values.py +36 -0
- xmipp3_installer/repository/config_vars/variables.py +48 -0
- xmipp3_installer/repository/invalid_config_line.py +15 -0
- xmipp3_installer/shared/file_operations.py +18 -0
- xmipp3_installer/shared/singleton.py +25 -0
- xmipp3_installer-1.0.0.dist-info/LICENSE +674 -0
- xmipp3_installer-1.0.0.dist-info/METADATA +729 -0
- xmipp3_installer-1.0.0.dist-info/RECORD +70 -0
- xmipp3_installer-1.0.0.dist-info/WHEEL +5 -0
- xmipp3_installer-1.0.0.dist-info/entry_points.txt +2 -0
- xmipp3_installer-1.0.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
xmipp3_installer/__init__.py,sha256=s67VAuwU_q4SQwrHE2ma0iHaK7B-he8LIAHE6isCmMc,50
|
|
2
|
+
xmipp3_installer/__main__.py,sha256=dCNo-OeRx7aV72-RK1SBwISGfRXVpU8hSegso8YQ5Nk,126
|
|
3
|
+
xmipp3_installer/api_client/api_client.py,sha256=SpBDGw4TrDS7BcIzNpEO2qRPT3AvmJBKDREG4UbAwY4,1604
|
|
4
|
+
xmipp3_installer/api_client/assembler/installation_info_assembler.py,sha256=IMTOnJwphe_RbzptG7L6zIJmhZXy5lCF5vigMd-NR-s,5950
|
|
5
|
+
xmipp3_installer/application/__init__.py,sha256=kLEk5vEkDPq06r2mKB9FZ2f-yn0Jgm5rSGfL3tBwtik,89
|
|
6
|
+
xmipp3_installer/application/user_interactions.py,sha256=OMxbrWRPtkx13gJPmTyuCyJyWnLRc5xIfYWlBluix6E,597
|
|
7
|
+
xmipp3_installer/application/cli/__init__.py,sha256=twbZEzUf7ZjBKE07j3DQinLXqa5KOVJ8akiMISx6Rfg,32
|
|
8
|
+
xmipp3_installer/application/cli/cli.py,sha256=1AWTErox4lFUR8SV0a3vKB-wCP8M5IkyF9bZv39tHuE,9515
|
|
9
|
+
xmipp3_installer/application/cli/arguments/__init__.py,sha256=XxVACuf8IvNGkv8FatCwQ5EqI_WeStJVq8AqXYn-icw,292
|
|
10
|
+
xmipp3_installer/application/cli/arguments/modes.py,sha256=_sNWryGIV7gJvIJplWZVaZB6ZmvxzpEaEiDC7qy4rLc,5020
|
|
11
|
+
xmipp3_installer/application/cli/arguments/params.py,sha256=q_zKTtxY9-D9WTcKVpoqW5PA5jtb5-dtBW6Zgb-UMg8,2394
|
|
12
|
+
xmipp3_installer/application/cli/parsers/base_help_formatter.py,sha256=XYnkbU5WvnLeYGrVXc1zAtcYx-FWq86QRCyBK8zbBCc,8329
|
|
13
|
+
xmipp3_installer/application/cli/parsers/error_handler_parser.py,sha256=kPfwa-cFDgEL3nt3Yqh2Ve-_BoJx23_A_6TVB-CfXWo,1740
|
|
14
|
+
xmipp3_installer/application/cli/parsers/format.py,sha256=4aUpmhOYE8MkRvHnm430tv8kUyI5hu-gvOv4Oso3stA,854
|
|
15
|
+
xmipp3_installer/application/cli/parsers/general_help_formatter.py,sha256=0lwY8YQySW-GiTMJu8moulsZ0V52Y0LS3bmZDVbbZMk,2863
|
|
16
|
+
xmipp3_installer/application/cli/parsers/mode_help_formatter.py,sha256=e2tM0thiYwBy2yqtefH3uRZ5bw_AE5_Ny6jVq6Ss6Hk,3553
|
|
17
|
+
xmipp3_installer/application/logger/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
18
|
+
xmipp3_installer/application/logger/errors.py,sha256=igUBJY7wcT-dxodxc7hhJxac2YLIYT8OEyKMjdZAXYc,1287
|
|
19
|
+
xmipp3_installer/application/logger/logger.py,sha256=uPsddBeS2oFKmIB9lMcfiblfTs3XY0HZW0ZA63-AjsM,6953
|
|
20
|
+
xmipp3_installer/application/logger/predefined_messages.py,sha256=YL8cK5ebpdehFUxXY63b9g7xDuhXVCrk-reipX1A8Z4,2083
|
|
21
|
+
xmipp3_installer/installer/__init__.py,sha256=sxvxGWDy3i9EumDOpI5djVU-gpdlFcuFG1wfRNWJpfU,51
|
|
22
|
+
xmipp3_installer/installer/installer_service.py,sha256=NFEZi15sswimaEy3JjJ-vwC39cThfHLKF0Lk7LntznA,2644
|
|
23
|
+
xmipp3_installer/installer/orquestrator.py,sha256=Bpn4J_tVp4cb4cHTcu-bUgT_QTHxKFPeTE9POsYAqTA,1026
|
|
24
|
+
xmipp3_installer/installer/urls.py,sha256=wlTMb04INnv_WM0CE33-IeZNKXWmVcq-VCGEhhxGDIA,406
|
|
25
|
+
xmipp3_installer/installer/constants/__init__.py,sha256=yNZfGRtYy3uuF6WebDr0QqqcVsJlh-oh6DxjK2qtQ0M,352
|
|
26
|
+
xmipp3_installer/installer/constants/paths.py,sha256=JDcE2FwkmHAaNmIjXeT9E2L_gBXNjHDU1KLZqj4w_FE,972
|
|
27
|
+
xmipp3_installer/installer/handlers/__init__.py,sha256=f5XfFtrOTSDRa7Vco8HThqOp3P517dDYa6Nn_DrpUJQ,91
|
|
28
|
+
xmipp3_installer/installer/handlers/conda_handler.py,sha256=BDq9Dhg4Drw2xBt6RCVZMU7sS9GQN9tfispIulG5DIs,328
|
|
29
|
+
xmipp3_installer/installer/handlers/generic_package_handler.py,sha256=U7EQTGjBnVxCBgvma6T4mvocgFcZq_GVz0VOBCTA5tM,671
|
|
30
|
+
xmipp3_installer/installer/handlers/git_handler.py,sha256=q9LqIIKlvXTAflN6dTuNnES3iGtE9ti2JoxiGSzGMxY,6261
|
|
31
|
+
xmipp3_installer/installer/handlers/shell_handler.py,sha256=7_co6qNVOc8FroLtVyrU7CW0kgguoTqAMzfOqRsxrbc,3455
|
|
32
|
+
xmipp3_installer/installer/handlers/versions_manager.py,sha256=uUcFCS9uekzOcIE3umbDBqhItGt4pU9N6QSHkHZ2_AE,3418
|
|
33
|
+
xmipp3_installer/installer/handlers/cmake/__init__.py,sha256=lORTw5-xZSBQrwn_BzJ8gtIyYxYsIWDgs1AidCFq_vw,65
|
|
34
|
+
xmipp3_installer/installer/handlers/cmake/cmake_constants.py,sha256=GGYX46H3tedr0ghZ2mWk_hAqrvjzlDeG0PHGLgBWso8,722
|
|
35
|
+
xmipp3_installer/installer/handlers/cmake/cmake_handler.py,sha256=FztH6sEDQgRVj7C1I85EpaN1nCXIBg-LtdGfuVIrT9M,2271
|
|
36
|
+
xmipp3_installer/installer/modes/__init__.py,sha256=-8F3Qpzmc9NjP0liDr0U-euw9dDPr93EndDKnRoIm7A,49
|
|
37
|
+
xmipp3_installer/installer/modes/mode_all_executor.py,sha256=vMWm_E4C1oy70ge2A8HYVGMSx711gyuKGZheTBF2t_I,1991
|
|
38
|
+
xmipp3_installer/installer/modes/mode_config_executor.py,sha256=UmcQack_-tbE4b7jGeGbez6wUdLMslEPggcFrbq85dU,1683
|
|
39
|
+
xmipp3_installer/installer/modes/mode_executor.py,sha256=k2luDSc7rhizSVkoven7UUChKrTX-JjYRdrWKPzlMdM,1242
|
|
40
|
+
xmipp3_installer/installer/modes/mode_get_sources_executor.py,sha256=ZW8e5yWYLxnXpfmi7g3bL85Hy-7OBfeMqrOxbc7K2bQ,5044
|
|
41
|
+
xmipp3_installer/installer/modes/mode_git_executor.py,sha256=QArtLVMVCQY1JlDEP_O46TEG05C3GKXjK26H9M9rp50,1417
|
|
42
|
+
xmipp3_installer/installer/modes/mode_selector.py,sha256=pHI3RIbnoz5m3ZCUNMXqFaZ8YJDTfhn_MPs99yb4YUI,1449
|
|
43
|
+
xmipp3_installer/installer/modes/mode_version_executor.py,sha256=a33nJIL5hWqXLE8OQRrEZqlFAYRorySp49wGlBoYvak,6307
|
|
44
|
+
xmipp3_installer/installer/modes/mode_clean/__init__.py,sha256=8sd4O5YcWQSTyYPSCFtLFW5YXPM9yKu7LUKSOv5pZBQ,58
|
|
45
|
+
xmipp3_installer/installer/modes/mode_clean/mode_clean_all_executor.py,sha256=gcddErcxQtdM-rOZ9KC0_DgxRMJzYpT1OCBctzfrius,1452
|
|
46
|
+
xmipp3_installer/installer/modes/mode_clean/mode_clean_bin_executor.py,sha256=JroI9zEgcmraROhpxp08E1yXIxim12ozTIaEXwQrSoY,2827
|
|
47
|
+
xmipp3_installer/installer/modes/mode_clean/mode_clean_executor.py,sha256=DIqVHMqMaGjpnr6uN8HFe2pfIF4Fl1QyZb5RaruhGiQ,1652
|
|
48
|
+
xmipp3_installer/installer/modes/mode_cmake/__init__.py,sha256=FffU9aZoFMcsaK0QPi_k1TLYZ_v1q1M5IfBbGQ0DnrI,55
|
|
49
|
+
xmipp3_installer/installer/modes/mode_cmake/mode_cmake_executor.py,sha256=LafwAWuJWAIoRcBHMr7dtm3RHs-xUnSI0tclO40lWeo,1762
|
|
50
|
+
xmipp3_installer/installer/modes/mode_cmake/mode_compile_and_install_executor.py,sha256=GZm2g1mKYKDb77zpI9hVFUK77tH4CWf6urPW9ZBmsG4,1964
|
|
51
|
+
xmipp3_installer/installer/modes/mode_cmake/mode_config_build_executor.py,sha256=jkaRr04TJM1PcaTW9qvmkqv9T5U7UmGsmnDC2o6AkBw,2415
|
|
52
|
+
xmipp3_installer/installer/modes/mode_sync/mode_add_model_executor.py,sha256=z4FhYZs2G_HBnMj1stKugLjG1QkCd1bP0gGBsHkHGR8,3802
|
|
53
|
+
xmipp3_installer/installer/modes/mode_sync/mode_get_models_executor.py,sha256=vkope7_n3nzXjUw9fN2g9yXmmmSBQyrAxQ2pbSUWZy8,1797
|
|
54
|
+
xmipp3_installer/installer/modes/mode_sync/mode_sync_executor.py,sha256=qpH4tB7xlh_CqfcyFO8LrtxAWwjALQI08E0HV_veYlg,1562
|
|
55
|
+
xmipp3_installer/installer/modes/mode_sync/mode_test_executor.py,sha256=W4d9e3TCxTj467prlj8q2tODzN-WKzGChp7phazYxO8,3046
|
|
56
|
+
xmipp3_installer/repository/__init__.py,sha256=RzgHN49tR493qbnZuqM18G_TRu3cYAMFYrK2xVuDIzg,66
|
|
57
|
+
xmipp3_installer/repository/config.py,sha256=8_pN4pKr9Na4oy7cH3hDIVMSMkQ62Mhy1orJ6AEfuXc,8467
|
|
58
|
+
xmipp3_installer/repository/invalid_config_line.py,sha256=96s09t6SDMPFRnXu340oqK5dhB06ABzOLilI1qe5QIg,695
|
|
59
|
+
xmipp3_installer/repository/config_vars/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
60
|
+
xmipp3_installer/repository/config_vars/config_values_adapter.py,sha256=Izsuxp1U_XVWlsNMx6c_ZLRy5m-IFR8KxR5GUg4L13E,4148
|
|
61
|
+
xmipp3_installer/repository/config_vars/default_values.py,sha256=v0_KCeWW-ZXBX_F2hmyKjjzD8mF-2-oJM-iop8wIObc,1101
|
|
62
|
+
xmipp3_installer/repository/config_vars/variables.py,sha256=xPPnlMde5AZ4UDmzSwBo-fyY1_9RJpRIzRMw7LjLKJU,1500
|
|
63
|
+
xmipp3_installer/shared/file_operations.py,sha256=iQgROh8SBK2M_xa1b7Lg4TJZToRbdLswuMEbcZcdh08,390
|
|
64
|
+
xmipp3_installer/shared/singleton.py,sha256=JKKDgpFdpo6Z4nitZR5hxpZGvIqmSiyZOxQyP7zRl1U,533
|
|
65
|
+
xmipp3_installer-1.0.0.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
66
|
+
xmipp3_installer-1.0.0.dist-info/METADATA,sha256=ggBBtWpuG8BAgoAUCRQtoStd470nGwTaLMEzc4xMFA4,43998
|
|
67
|
+
xmipp3_installer-1.0.0.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
|
|
68
|
+
xmipp3_installer-1.0.0.dist-info/entry_points.txt,sha256=AbvjNKF8d0LfHkuVMrBz26YhjkzL37m4FYUDDs9UFB4,68
|
|
69
|
+
xmipp3_installer-1.0.0.dist-info/top_level.txt,sha256=PbpSNvfVKVhceWxY482CNYzjSnGbQXl782LlWh39uuw,17
|
|
70
|
+
xmipp3_installer-1.0.0.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
xmipp3_installer
|