qlogicae-logis 1.1.0__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.
Files changed (124) hide show
  1. qlogicae_logis-1.1.0/.gitignore +241 -0
  2. qlogicae_logis-1.1.0/LICENSE +22 -0
  3. qlogicae_logis-1.1.0/PKG-INFO +64 -0
  4. qlogicae_logis-1.1.0/README.md +21 -0
  5. qlogicae_logis-1.1.0/SECURITY.md +8 -0
  6. qlogicae_logis-1.1.0/project/asset/qlogicae1.png +0 -0
  7. qlogicae_logis-1.1.0/project/configuration/about.json +66 -0
  8. qlogicae_logis-1.1.0/pyproject.toml +191 -0
  9. qlogicae_logis-1.1.0/qlogicae_logis/__init__.py +0 -0
  10. qlogicae_logis-1.1.0/qlogicae_logis/v1/__init__.py +0 -0
  11. qlogicae_logis-1.1.0/qlogicae_logis/v1/benchmark_manager.py +24 -0
  12. qlogicae_logis-1.1.0/qlogicae_logis/v1/benchmark_manager_configurations.py +10 -0
  13. qlogicae_logis-1.1.0/qlogicae_logis/v1/cli/__init__.py +0 -0
  14. qlogicae_logis-1.1.0/qlogicae_logis/v1/cli/__main__.py +0 -0
  15. qlogicae_logis-1.1.0/qlogicae_logis/v1/cli/about.py +19 -0
  16. qlogicae_logis-1.1.0/qlogicae_logis/v1/cli/app.py +45 -0
  17. qlogicae_logis-1.1.0/qlogicae_logis/v1/cli/demo.py +3 -0
  18. qlogicae_logis-1.1.0/qlogicae_logis/v1/cli/filesystem.py +248 -0
  19. qlogicae_logis-1.1.0/qlogicae_logis/v1/cli/template.py +36 -0
  20. qlogicae_logis-1.1.0/qlogicae_logis/v1/cli/workflow.py +33 -0
  21. qlogicae_logis-1.1.0/qlogicae_logis/v1/cli/workspace.py +84 -0
  22. qlogicae_logis-1.1.0/qlogicae_logis/v1/cli_command_manager.py +2288 -0
  23. qlogicae_logis-1.1.0/qlogicae_logis/v1/cli_command_manager_configurations.py +10 -0
  24. qlogicae_logis-1.1.0/qlogicae_logis/v1/cli_display_manager.py +220 -0
  25. qlogicae_logis-1.1.0/qlogicae_logis/v1/cli_display_manager_configurations.py +10 -0
  26. qlogicae_logis-1.1.0/qlogicae_logis/v1/cli_manager.py +612 -0
  27. qlogicae_logis-1.1.0/qlogicae_logis/v1/cli_manager_configurations.py +10 -0
  28. qlogicae_logis-1.1.0/qlogicae_logis/v1/console_log_manager.py +125 -0
  29. qlogicae_logis-1.1.0/qlogicae_logis/v1/console_log_manager_configurations.py +10 -0
  30. qlogicae_logis-1.1.0/qlogicae_logis/v1/enum_conversion_output.py +8 -0
  31. qlogicae_logis-1.1.0/qlogicae_logis/v1/enum_conversion_output_enum_manager.py +59 -0
  32. qlogicae_logis-1.1.0/qlogicae_logis/v1/enum_conversion_output_enum_manager_configurations.py +10 -0
  33. qlogicae_logis-1.1.0/qlogicae_logis/v1/file_entity_filesystem_tree_setup_options.py +11 -0
  34. qlogicae_logis-1.1.0/qlogicae_logis/v1/file_io_manager.py +59 -0
  35. qlogicae_logis-1.1.0/qlogicae_logis/v1/file_io_manager_configurations.py +10 -0
  36. qlogicae_logis-1.1.0/qlogicae_logis/v1/file_log_manager.py +214 -0
  37. qlogicae_logis-1.1.0/qlogicae_logis/v1/file_log_manager_configurations.py +10 -0
  38. qlogicae_logis-1.1.0/qlogicae_logis/v1/filesystem_compression_manager.py +75 -0
  39. qlogicae_logis-1.1.0/qlogicae_logis/v1/filesystem_compression_manager_configurations.py +10 -0
  40. qlogicae_logis-1.1.0/qlogicae_logis/v1/filesystem_manager.py +190 -0
  41. qlogicae_logis-1.1.0/qlogicae_logis/v1/filesystem_manager_configurations.py +10 -0
  42. qlogicae_logis-1.1.0/qlogicae_logis/v1/folder_entity_filesystem_tree_setup_options.py +7 -0
  43. qlogicae_logis-1.1.0/qlogicae_logis/v1/json_file_io_manager.py +59 -0
  44. qlogicae_logis-1.1.0/qlogicae_logis/v1/json_file_io_manager_configurations.py +10 -0
  45. qlogicae_logis-1.1.0/qlogicae_logis/v1/json_manager.py +69 -0
  46. qlogicae_logis-1.1.0/qlogicae_logis/v1/json_manager_configurations.py +10 -0
  47. qlogicae_logis-1.1.0/qlogicae_logis/v1/json_text_manager.py +37 -0
  48. qlogicae_logis-1.1.0/qlogicae_logis/v1/json_text_manager_configurations.py +10 -0
  49. qlogicae_logis-1.1.0/qlogicae_logis/v1/log_format.py +12 -0
  50. qlogicae_logis-1.1.0/qlogicae_logis/v1/log_manager.py +112 -0
  51. qlogicae_logis-1.1.0/qlogicae_logis/v1/log_manager_configurations.py +10 -0
  52. qlogicae_logis-1.1.0/qlogicae_logis/v1/log_options.py +10 -0
  53. qlogicae_logis-1.1.0/qlogicae_logis/v1/log_options_manager.py +32 -0
  54. qlogicae_logis-1.1.0/qlogicae_logis/v1/log_options_manager_configurations.py +10 -0
  55. qlogicae_logis-1.1.0/qlogicae_logis/v1/macros_manager.py +211 -0
  56. qlogicae_logis-1.1.0/qlogicae_logis/v1/macros_manager_configurations.py +10 -0
  57. qlogicae_logis-1.1.0/qlogicae_logis/v1/memory_allocation_benchmark_manager.py +17 -0
  58. qlogicae_logis-1.1.0/qlogicae_logis/v1/memory_allocation_benchmark_manager_configurations.py +10 -0
  59. qlogicae_logis-1.1.0/qlogicae_logis/v1/object_memory_benchmark_manager.py +17 -0
  60. qlogicae_logis-1.1.0/qlogicae_logis/v1/object_memory_benchmark_manager_configurations.py +10 -0
  61. qlogicae_logis-1.1.0/qlogicae_logis/v1/object_merge_manager.py +80 -0
  62. qlogicae_logis-1.1.0/qlogicae_logis/v1/object_merge_manager_configurations.py +10 -0
  63. qlogicae_logis-1.1.0/qlogicae_logis/v1/placeholder_value_manager.py +64 -0
  64. qlogicae_logis-1.1.0/qlogicae_logis/v1/placeholder_value_manager_configurations.py +10 -0
  65. qlogicae_logis-1.1.0/qlogicae_logis/v1/runtime_benchmark_manager.py +15 -0
  66. qlogicae_logis-1.1.0/qlogicae_logis/v1/runtime_benchmark_manager_configurations.py +10 -0
  67. qlogicae_logis-1.1.0/qlogicae_logis/v1/script_process.py +7 -0
  68. qlogicae_logis-1.1.0/qlogicae_logis/v1/script_process_enum_manager.py +60 -0
  69. qlogicae_logis-1.1.0/qlogicae_logis/v1/script_process_enum_manager_configurations.py +10 -0
  70. qlogicae_logis-1.1.0/qlogicae_logis/v1/script_process_manager.py +51 -0
  71. qlogicae_logis-1.1.0/qlogicae_logis/v1/script_process_manager_configurations.py +10 -0
  72. qlogicae_logis-1.1.0/qlogicae_logis/v1/system_manager.py +62 -0
  73. qlogicae_logis-1.1.0/qlogicae_logis/v1/system_manager_configurations.py +10 -0
  74. qlogicae_logis-1.1.0/qlogicae_logis/v1/target_cache_value.py +10 -0
  75. qlogicae_logis-1.1.0/qlogicae_logis/v1/text_encoding_manager.py +21 -0
  76. qlogicae_logis-1.1.0/qlogicae_logis/v1/text_encoding_manager_configurations.py +10 -0
  77. qlogicae_logis-1.1.0/qlogicae_logis/v1/text_file_io_manager.py +55 -0
  78. qlogicae_logis-1.1.0/qlogicae_logis/v1/text_file_io_manager_configurations.py +10 -0
  79. qlogicae_logis-1.1.0/qlogicae_logis/v1/text_manager.py +29 -0
  80. qlogicae_logis-1.1.0/qlogicae_logis/v1/text_manager_configurations.py +10 -0
  81. qlogicae_logis-1.1.0/qlogicae_logis/v1/time_manager.py +166 -0
  82. qlogicae_logis-1.1.0/qlogicae_logis/v1/time_manager_configurations.py +10 -0
  83. qlogicae_logis-1.1.0/qlogicae_logis/v1/time_unit.py +18 -0
  84. qlogicae_logis-1.1.0/qlogicae_logis/v1/time_unit_enum_manager.py +172 -0
  85. qlogicae_logis-1.1.0/qlogicae_logis/v1/time_unit_enum_manager_configurations.py +10 -0
  86. qlogicae_logis-1.1.0/qlogicae_logis/v1/time_zone.py +7 -0
  87. qlogicae_logis-1.1.0/qlogicae_logis/v1/time_zone_enum_manager.py +82 -0
  88. qlogicae_logis-1.1.0/qlogicae_logis/v1/time_zone_enum_manager_configurations.py +10 -0
  89. qlogicae_logis-1.1.0/qlogicae_logis/v1/timer_manager.py +66 -0
  90. qlogicae_logis-1.1.0/qlogicae_logis/v1/timer_manager_configurations.py +10 -0
  91. qlogicae_logis-1.1.0/qlogicae_logis/v1/timestamp_manager.py +82 -0
  92. qlogicae_logis-1.1.0/qlogicae_logis/v1/timestamp_manager_configurations.py +10 -0
  93. qlogicae_logis-1.1.0/qlogicae_logis/v1/toml_file_io_manager.py +49 -0
  94. qlogicae_logis-1.1.0/qlogicae_logis/v1/toml_file_io_manager_configurations.py +10 -0
  95. qlogicae_logis-1.1.0/qlogicae_logis/v1/toml_manager.py +33 -0
  96. qlogicae_logis-1.1.0/qlogicae_logis/v1/toml_manager_configurations.py +10 -0
  97. qlogicae_logis-1.1.0/qlogicae_logis/v1/toml_text_manager.py +50 -0
  98. qlogicae_logis-1.1.0/qlogicae_logis/v1/toml_text_manager_configurations.py +10 -0
  99. qlogicae_logis-1.1.0/qlogicae_logis/v1/value_cache_manager.py +95 -0
  100. qlogicae_logis-1.1.0/qlogicae_logis/v1/value_cache_manager_configurations.py +10 -0
  101. qlogicae_logis-1.1.0/qlogicae_logis/v1/value_cache_storage_manager.py +198 -0
  102. qlogicae_logis-1.1.0/qlogicae_logis/v1/value_cache_storage_manager_configurations.py +10 -0
  103. qlogicae_logis-1.1.0/qlogicae_logis/v1/workspace_export_manager.py +29 -0
  104. qlogicae_logis-1.1.0/qlogicae_logis/v1/workspace_export_manager_configurations.py +10 -0
  105. qlogicae_logis-1.1.0/qlogicae_logis/v1/workspace_filesystem_manager.py +70 -0
  106. qlogicae_logis-1.1.0/qlogicae_logis/v1/workspace_filesystem_manager_configurations.py +10 -0
  107. qlogicae_logis-1.1.0/qlogicae_logis/v1/workspace_log_manager.py +21 -0
  108. qlogicae_logis-1.1.0/qlogicae_logis/v1/workspace_log_manager_configurations.py +10 -0
  109. qlogicae_logis-1.1.0/qlogicae_logis/v1/workspace_macros_manager.py +19 -0
  110. qlogicae_logis-1.1.0/qlogicae_logis/v1/workspace_macros_manager_configurations.py +10 -0
  111. qlogicae_logis-1.1.0/qlogicae_logis/v1/workspace_manager.py +1015 -0
  112. qlogicae_logis-1.1.0/qlogicae_logis/v1/workspace_manager_configurations.py +10 -0
  113. qlogicae_logis-1.1.0/qlogicae_logis/v1/workspace_script_manager.py +15 -0
  114. qlogicae_logis-1.1.0/qlogicae_logis/v1/workspace_script_manager_configurations.py +10 -0
  115. qlogicae_logis-1.1.0/qlogicae_logis/v1/workspace_system_manager.py +56 -0
  116. qlogicae_logis-1.1.0/qlogicae_logis/v1/workspace_system_manager_configurations.py +10 -0
  117. qlogicae_logis-1.1.0/qlogicae_logis/v1/workspace_value_cache_manager.py +17 -0
  118. qlogicae_logis-1.1.0/qlogicae_logis/v1/workspace_value_cache_manager_configurations.py +10 -0
  119. qlogicae_logis-1.1.0/qlogicae_logis/v1/yaml_file_io_manager.py +72 -0
  120. qlogicae_logis-1.1.0/qlogicae_logis/v1/yaml_file_io_manager_configurations.py +10 -0
  121. qlogicae_logis-1.1.0/qlogicae_logis/v1/yaml_manager.py +85 -0
  122. qlogicae_logis-1.1.0/qlogicae_logis/v1/yaml_manager_configurations.py +10 -0
  123. qlogicae_logis-1.1.0/qlogicae_logis/v1/yaml_text_manager.py +40 -0
  124. qlogicae_logis-1.1.0/qlogicae_logis/v1/yaml_text_manager_configurations.py +10 -0
@@ -0,0 +1,241 @@
1
+
2
+ .temp/
3
+ .temporary/
4
+ temp/
5
+ temporary/
6
+ .out/
7
+ .output/
8
+ .outputs/
9
+ out/
10
+ output/
11
+ outputs/
12
+ .dist/
13
+ dist/
14
+ .build/
15
+ build/
16
+ reports/
17
+ .reports/
18
+
19
+
20
+ .ruff_cache/
21
+
22
+ # Byte-compiled / optimized / DLL files
23
+ __pycache__/
24
+ *.py[codz]
25
+ *$py.class
26
+
27
+ # C extensions
28
+ *.so
29
+
30
+ # Distribution / packaging
31
+ .Python
32
+ build/
33
+ develop-eggs/
34
+ dist/
35
+ downloads/
36
+ eggs/
37
+ .eggs/
38
+ lib/
39
+ lib64/
40
+ parts/
41
+ sdist/
42
+ var/
43
+ wheels/
44
+ share/python-wheels/
45
+ *.egg-info/
46
+ .installed.cfg
47
+ *.egg
48
+ MANIFEST
49
+
50
+ # PyInstaller
51
+ # Usually these files are written by a python script from a template
52
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
53
+ *.manifest
54
+ *.spec
55
+
56
+ # Installer logs
57
+ pip-log.txt
58
+ pip-delete-this-directory.txt
59
+
60
+ # Unit test / coverage reports
61
+ htmlcov/
62
+ .tox/
63
+ .nox/
64
+ .coverage
65
+ .coverage.*
66
+ .cache
67
+ nosetests.xml
68
+ coverage.xml
69
+ *.cover
70
+ *.py.cover
71
+ *.lcov
72
+ .hypothesis/
73
+ .pytest_cache/
74
+ cover/
75
+
76
+ # Translations
77
+ *.mo
78
+ *.pot
79
+
80
+ # Django stuff:
81
+ *.log
82
+ local_settings.py
83
+ db.sqlite3
84
+ db.sqlite3-journal
85
+
86
+ # Flask stuff:
87
+ instance/
88
+ .webassets-cache
89
+
90
+ # Scrapy stuff:
91
+ .scrapy
92
+
93
+ # Sphinx documentation
94
+ docs/_build/
95
+
96
+ # PyBuilder
97
+ .pybuilder/
98
+ target/**/*
99
+
100
+ # Jupyter Notebook
101
+ .ipynb_checkpoints
102
+
103
+ # IPython
104
+ profile_default/
105
+ ipython_config.py
106
+
107
+ # pyenv
108
+ # For a library or package, you might want to ignore these files since the code is
109
+ # intended to run in multiple environments; otherwise, check them in:
110
+ # .python-version
111
+
112
+ # pipenv
113
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
114
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
115
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
116
+ # install all needed dependencies.
117
+ # Pipfile.lock
118
+
119
+ # UV
120
+ # Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
121
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
122
+ # commonly ignored for libraries.
123
+ # uv.lock
124
+
125
+ # poetry
126
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
127
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
128
+ # commonly ignored for libraries.
129
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
130
+ # poetry.lock
131
+ # poetry.toml
132
+
133
+ # pdm
134
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
135
+ # pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
136
+ # https://pdm-project.org/en/latest/usage/project/#working-with-version-control
137
+ # pdm.lock
138
+ # pdm.toml
139
+ .pdm-python
140
+ .pdm-build/
141
+
142
+ # pixi
143
+ # Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
144
+ # pixi.lock
145
+ # Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
146
+ # in the .venv directory. It is recommended not to include this directory in version control.
147
+ .pixi/*
148
+ !.pixi/config.toml
149
+
150
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
151
+ __pypackages__/
152
+
153
+ # Celery stuff
154
+ celerybeat-schedule*
155
+ celerybeat.pid
156
+
157
+ # Redis
158
+ *.rdb
159
+ *.aof
160
+ *.pid
161
+
162
+ # RabbitMQ
163
+ mnesia/
164
+ rabbitmq/
165
+ rabbitmq-data/
166
+
167
+ # ActiveMQ
168
+ activemq-data/
169
+
170
+ # SageMath parsed files
171
+ *.sage.py
172
+
173
+ # Environments
174
+ .env
175
+ .envrc
176
+ .venv
177
+ env/
178
+ venv/
179
+ ENV/
180
+ env.bak/
181
+ venv.bak/
182
+
183
+ # Spyder project settings
184
+ .spyderproject
185
+ .spyproject
186
+
187
+ # Rope project settings
188
+ .ropeproject
189
+
190
+ # mkdocs documentation
191
+ /site
192
+
193
+ # mypy
194
+ .mypy_cache/
195
+ .dmypy.json
196
+ dmypy.json
197
+
198
+ # Pyre type checker
199
+ .pyre/
200
+
201
+ # pytype static type analyzer
202
+ .pytype/
203
+
204
+ # Cython debug symbols
205
+ cython_debug/
206
+
207
+ # PyCharm
208
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
209
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
210
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
211
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
212
+ # .idea/
213
+
214
+ # Abstra
215
+ # Abstra is an AI-powered process automation framework.
216
+ # Ignore directories containing user credentials, local state, and settings.
217
+ # Learn more at https://abstra.io/docs
218
+ .abstra/
219
+
220
+ # Visual Studio Code
221
+ # Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
222
+ # that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
223
+ # and can be added to the global gitignore or merged into this file. However, if you prefer,
224
+ # you could uncomment the following to ignore the entire vscode folder
225
+ # .vscode/
226
+ # Temporary file for partial code execution
227
+ tempCodeRunnerFile.py
228
+
229
+ # Ruff stuff:
230
+ .ruff_cache/
231
+
232
+ # PyPI configuration file
233
+ .pypirc
234
+
235
+ # Marimo
236
+ marimo/_static/
237
+ marimo/_lsp/
238
+ __marimo__/
239
+
240
+ # Streamlit
241
+ .streamlit/secrets.toml
@@ -0,0 +1,22 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Vaughn Cedric L. Araneta
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
22
+
@@ -0,0 +1,64 @@
1
+ Metadata-Version: 2.4
2
+ Name: qlogicae-logis
3
+ Version: 1.1.0
4
+ Summary: The project orchestration tool for QLogicae projects
5
+ Project-URL: Homepage, https://github.com/CedricDeVon/qlogicae-logis
6
+ Project-URL: Repository, https://github.com/CedricDeVon/qlogicae-logis
7
+ Project-URL: Documentation, https://github.com/CedricDeVon/qlogicae-logis
8
+ Project-URL: Issues, https://github.com/CedricDeVon/qlogicae-logis/issues
9
+ Project-URL: Changelog, https://github.com/CedricDeVon/qlogicae-logis/releases
10
+ Author-email: "Vaughn Cedric L. Araneta" <vaughncedriclipardoaraneta@gmail.com>
11
+ Maintainer-email: "Vaughn Cedric L. Araneta" <vaughncedriclipardoaraneta@gmail.com>
12
+ License-Expression: MIT
13
+ License-File: LICENSE
14
+ Keywords: logis,qlogicae
15
+ Classifier: Development Status :: 3 - Alpha
16
+ Classifier: Intended Audience :: Developers
17
+ Classifier: Operating System :: OS Independent
18
+ Classifier: Programming Language :: Python
19
+ Classifier: Programming Language :: Python :: 3
20
+ Classifier: Programming Language :: Python :: 3.12
21
+ Classifier: Programming Language :: Python :: 3.13
22
+ Classifier: Programming Language :: Python :: 3.14
23
+ Classifier: Topic :: Software Development
24
+ Classifier: Topic :: Software Development :: Build Tools
25
+ Classifier: Topic :: System :: Installation/Setup
26
+ Classifier: Topic :: System :: Software Distribution
27
+ Classifier: Topic :: System :: Systems Administration
28
+ Classifier: Topic :: Utilities
29
+ Classifier: Typing :: Typed
30
+ Requires-Python: >=3.12
31
+ Provides-Extra: dev
32
+ Requires-Dist: hatch; extra == 'dev'
33
+ Requires-Dist: memray; extra == 'dev'
34
+ Requires-Dist: mypy; extra == 'dev'
35
+ Requires-Dist: pympler; extra == 'dev'
36
+ Requires-Dist: pytest; extra == 'dev'
37
+ Requires-Dist: pytest-benchmark; extra == 'dev'
38
+ Requires-Dist: pytest-cov; extra == 'dev'
39
+ Requires-Dist: ruff; extra == 'dev'
40
+ Requires-Dist: scalene; extra == 'dev'
41
+ Requires-Dist: twine; extra == 'dev'
42
+ Description-Content-Type: text/markdown
43
+
44
+ </br>
45
+
46
+ <div style="width: 100%; display: flex; justify-content: center;">
47
+ <image alt="the qlogicae logo" src="./project/asset/qlogicae1.png" width="256px">
48
+ </div>
49
+
50
+ </br>
51
+
52
+
53
+ <div style="text-align: center;">
54
+ <h1>QLogicae Logis</h1>
55
+ <p style="font-style: italic;">The project orchestration tool for QLogicae projects</p>
56
+ <div style="margin: 32px 64px;">
57
+
58
+ ![Version](https://img.shields.io/badge/Version-v1.1.0-blue)
59
+ ![License: MIT](https://img.shields.io/badge/License-MIT-red)
60
+
61
+ </div>
62
+ </div>
63
+
64
+ </br>
@@ -0,0 +1,21 @@
1
+ </br>
2
+
3
+ <div style="width: 100%; display: flex; justify-content: center;">
4
+ <image alt="the qlogicae logo" src="./project/asset/qlogicae1.png" width="256px">
5
+ </div>
6
+
7
+ </br>
8
+
9
+
10
+ <div style="text-align: center;">
11
+ <h1>QLogicae Logis</h1>
12
+ <p style="font-style: italic;">The project orchestration tool for QLogicae projects</p>
13
+ <div style="margin: 32px 64px;">
14
+
15
+ ![Version](https://img.shields.io/badge/Version-v1.1.0-blue)
16
+ ![License: MIT](https://img.shields.io/badge/License-MIT-red)
17
+
18
+ </div>
19
+ </div>
20
+
21
+ </br>
@@ -0,0 +1,8 @@
1
+ # Security Policy
2
+
3
+ ## Supported Versions
4
+
5
+ | Version | Supported |
6
+ | ------- | ------------------ |
7
+ | = v1.1.0 | :white_check_mark: |
8
+ | < v1.1.0 | :x: |
@@ -0,0 +1,66 @@
1
+ {
2
+ "data": {
3
+ "brand-name": {
4
+ "name": "Brand Name",
5
+ "value": "QLogicae Logis",
6
+ "is-tabular": false
7
+ },
8
+
9
+ "project-version": {
10
+ "name": "Project Version",
11
+ "value": "v1.1.0",
12
+ "is-tabular": true
13
+ },
14
+
15
+ "project-description": {
16
+ "name": "Description",
17
+ "value": "The project orchestration tool for QLogicae projects",
18
+ "is-tabular": false
19
+ },
20
+
21
+ "project-name": {
22
+ "name": "Project Name",
23
+ "value": "Logis",
24
+ "is-tabular": true
25
+ },
26
+
27
+ "company-name": {
28
+ "name": "Company Name",
29
+ "value": "QLogicae",
30
+ "is-tabular": true
31
+ },
32
+
33
+ "workspace-name": {
34
+ "name": "Workspace Name",
35
+ "value": "qlogicae-logis",
36
+ "is-tabular": false
37
+ },
38
+
39
+ "author-name": {
40
+ "name": "Author Name",
41
+ "value": "Vaughn Cedric L. Araneta",
42
+ "is-tabular": true
43
+ },
44
+
45
+ "author-email": {
46
+ "name": "Author Email",
47
+ "value": "vaughncedriclipardoaraneta@gmail.com",
48
+ "is-tabular": true
49
+ },
50
+
51
+ "repository-link": {
52
+ "name": "Repository Link",
53
+ "value": "https://github.com/CedricDeVon/qlogicae-logis",
54
+ "is-tabular": true
55
+ },
56
+
57
+ "repository-keywords": {
58
+ "name": "Repository Keywords",
59
+ "value": ["qlogicae", "logis"],
60
+ "is-tabular": true
61
+ }
62
+ },
63
+ "metadata": {
64
+
65
+ }
66
+ }
@@ -0,0 +1,191 @@
1
+ [project]
2
+ name = "qlogicae-logis"
3
+ version = "1.1.0"
4
+ description = "The project orchestration tool for QLogicae projects"
5
+ readme = { file = "README.md", content-type = "text/markdown" }
6
+ requires-python = ">=3.12"
7
+ license = "MIT"
8
+ license-files = ["LICENSE"]
9
+ authors = [
10
+ { name = "Vaughn Cedric L. Araneta", email = "vaughncedriclipardoaraneta@gmail.com" }
11
+ ]
12
+ maintainers = [
13
+ { name = "Vaughn Cedric L. Araneta", email = "vaughncedriclipardoaraneta@gmail.com" }
14
+ ]
15
+ keywords = ["qlogicae", "logis"]
16
+ classifiers = [
17
+ "Development Status :: 3 - Alpha",
18
+ "Intended Audience :: Developers",
19
+ "Operating System :: OS Independent",
20
+ "Programming Language :: Python",
21
+ "Programming Language :: Python :: 3",
22
+ "Programming Language :: Python :: 3.12",
23
+ "Programming Language :: Python :: 3.13",
24
+ "Programming Language :: Python :: 3.14",
25
+ "Typing :: Typed",
26
+ "Topic :: Software Development",
27
+ "Topic :: Software Development :: Build Tools",
28
+ "Topic :: System :: Installation/Setup",
29
+ "Topic :: System :: Software Distribution",
30
+ "Topic :: System :: Systems Administration",
31
+ "Topic :: Utilities",
32
+ ]
33
+ dependencies = []
34
+
35
+
36
+ [project.optional-dependencies]
37
+ dev = [
38
+ "pytest",
39
+ "pytest-cov",
40
+ "pytest-benchmark",
41
+ "ruff",
42
+ "mypy",
43
+ "hatch",
44
+ "twine",
45
+ "memray",
46
+ "scalene",
47
+ "pympler"
48
+ ]
49
+
50
+
51
+ [project.scripts]
52
+ qlogicae-logis = "qlogicae_logis.v1.cli.app:main"
53
+
54
+
55
+ [project.urls]
56
+ Homepage = "https://github.com/CedricDeVon/qlogicae-logis"
57
+ Repository = "https://github.com/CedricDeVon/qlogicae-logis"
58
+ Documentation = "https://github.com/CedricDeVon/qlogicae-logis"
59
+ Issues = "https://github.com/CedricDeVon/qlogicae-logis/issues"
60
+ Changelog = "https://github.com/CedricDeVon/qlogicae-logis/releases"
61
+
62
+
63
+ [build-system]
64
+ requires = ["hatchling"]
65
+ build-backend = "hatchling.build"
66
+
67
+
68
+ [tool.pytest.ini_options]
69
+ pythonpath = ["."]
70
+ testpaths = ["./test/qlogicae_logis/v1/unit"]
71
+ python_files = ["test_*.py"]
72
+ addopts = "-ra"
73
+
74
+
75
+ [tool.coverage.run]
76
+ source = [
77
+ "qlogicae_logis.v1.value_cache_storage_manager",
78
+ "qlogicae_logis.v1.macros_manager",
79
+ "qlogicae_logis.v1.object_merge_manager",
80
+ ]
81
+ branch = true
82
+
83
+
84
+ [tool.hatch.build]
85
+ include = [
86
+ "LICENSE",
87
+ "README.md",
88
+ "SECURITY.md",
89
+ "project/**/*",
90
+ "qlogicae_logis/**/*",
91
+ ]
92
+ exclude = [
93
+ "**/__pycache__",
94
+ "**/*.pyc",
95
+ "test",
96
+ ".github",
97
+ ".gitignore",
98
+ ".vscode",
99
+ "requirements.txt",
100
+ "output",
101
+ ]
102
+
103
+ [tool.coverage.report]
104
+ show_missing = true
105
+ skip_covered = false
106
+
107
+
108
+ [tool.ruff]
109
+ target-version = "py314"
110
+ line-length = 88
111
+ exclude = [
112
+ ".git",
113
+ ".venv",
114
+ "__pycache__",
115
+ ".output",
116
+ "output",
117
+ ".outputs",
118
+ "outputs",
119
+ ".dist",
120
+ "dist",
121
+ ".build",
122
+ "build",
123
+ ".pytest_cache",
124
+ ".ruff_cache",
125
+ ".mypy_cache",
126
+ ".tox",
127
+ ".nox",
128
+ ".idea",
129
+ ".vscode",
130
+ ]
131
+
132
+ [tool.ruff.lint]
133
+ select = [
134
+ "E",
135
+ "W", # pycodestyle
136
+ "F", # Pyflakes
137
+ "I", # isort
138
+ "UP", # pyupgrade
139
+ "B", # flake8-bugbear
140
+ "PTH", # pathlib
141
+ ]
142
+ ignore = [
143
+ "B008",
144
+ "S607",
145
+ "S101", # allow assert statements
146
+ "S603", # allow subprocess usage
147
+ "PLR2004", # allow magic values
148
+ ]
149
+ fixable = ["ALL"]
150
+ unfixable = []
151
+
152
+
153
+ [tool.ruff.format]
154
+ quote-style = "double"
155
+ indent-style = "space"
156
+ line-ending = "auto"
157
+ docstring-code-format = true
158
+ docstring-code-line-length = "dynamic"
159
+ skip-magic-trailing-comma = false
160
+
161
+
162
+ [tool.hatch.envs.default.scripts]
163
+ typecheck ="""
164
+ mypy
165
+ """
166
+ lint = """
167
+ ruff check . --fix
168
+ """
169
+ format = """
170
+ ruff format .
171
+ """
172
+ workflow-deploy = """
173
+ hatch run build &&
174
+ hatch run typecheck &&
175
+ hatch run lint &&
176
+ hatch run format &&
177
+ twine upload ./output/build/* --config-file .pypirc --verbose
178
+ """
179
+
180
+
181
+ # [tool.mypy]
182
+ # files = ["library"]
183
+ # strict = true
184
+ # python_version = "3.12"
185
+ # namespace_packages = true
186
+ # explicit_package_bases = true
187
+ # show_error_codes = true
188
+ # pretty = true
189
+ # color_output = true
190
+ # show_column_numbers = true
191
+ # show_error_context = true
File without changes
File without changes
@@ -0,0 +1,24 @@
1
+ from qlogicae_cor.v1.abstract_manager import (
2
+ AbstractManager,
3
+ )
4
+
5
+ from qlogicae_logis.v1.benchmark_manager_configurations import (
6
+ BenchmarkManagerConfigurations,
7
+ )
8
+
9
+
10
+ class BenchmarkManager(AbstractManager[BenchmarkManagerConfigurations]):
11
+ def __init__(self) -> None:
12
+ super().__init__(BenchmarkManagerConfigurations())
13
+
14
+ def measure_runtime(self):
15
+ pass
16
+
17
+ def measure_object_memory(self):
18
+ pass
19
+
20
+ def snapshot(self):
21
+ pass
22
+
23
+
24
+ singleton = BenchmarkManager()
@@ -0,0 +1,10 @@
1
+ from qlogicae_cor.v1.abstract_manager_configurations import (
2
+ AbstractManagerConfigurations,
3
+ )
4
+
5
+
6
+ class BenchmarkManagerConfigurations(
7
+ AbstractManagerConfigurations,
8
+ ):
9
+ def __init__(self) -> None:
10
+ super().__init__()
File without changes
File without changes
@@ -0,0 +1,19 @@
1
+ import typer
2
+
3
+ from qlogicae_logis.v1 import cli_manager
4
+
5
+ app_about = typer.Typer()
6
+
7
+
8
+ @app_about.command(name="version", help="Current version.")
9
+ def version() -> bool:
10
+ cli_manager.singleton.handle_about_version()
11
+
12
+ return True
13
+
14
+
15
+ @app_about.command(name="me", help="All information.")
16
+ def me() -> bool:
17
+ cli_manager.singleton.handle_about_me()
18
+
19
+ return True