bas-swa 2026.6.19__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 (197) hide show
  1. bas_swa-2026.6.19/.gitignore +10 -0
  2. bas_swa-2026.6.19/PKG-INFO +10 -0
  3. bas_swa-2026.6.19/README.md +0 -0
  4. bas_swa-2026.6.19/cli/.gitignore +179 -0
  5. bas_swa-2026.6.19/cli/.idea/.gitignore +10 -0
  6. bas_swa-2026.6.19/cli/.idea/inspectionProfiles/Project_Default.xml +855 -0
  7. bas_swa-2026.6.19/cli/.idea/inspectionProfiles/profiles_settings.xml +6 -0
  8. bas_swa-2026.6.19/cli/.idea/misc.xml +7 -0
  9. bas_swa-2026.6.19/cli/.idea/modules.xml +9 -0
  10. bas_swa-2026.6.19/cli/.idea/pyProjectModel.xml +7 -0
  11. bas_swa-2026.6.19/cli/.idea/swa-cli.iml +7 -0
  12. bas_swa-2026.6.19/cli/.idea/swa-cli@1.iml +11 -0
  13. bas_swa-2026.6.19/cli/.idea/vcs.xml +6 -0
  14. bas_swa-2026.6.19/cli/.idea/workspace.xml +117 -0
  15. bas_swa-2026.6.19/cli/README.md +0 -0
  16. bas_swa-2026.6.19/cli/pyproject.toml +58 -0
  17. bas_swa-2026.6.19/cli/src/swa/cli/__init__.py +6 -0
  18. bas_swa-2026.6.19/cli/src/swa/cli/_cli.py +276 -0
  19. bas_swa-2026.6.19/cli/src/swa/cli/actions.py +148 -0
  20. bas_swa-2026.6.19/cli/src/swa/cli/args.py +222 -0
  21. bas_swa-2026.6.19/cli/src/swa/cli/command.py +250 -0
  22. bas_swa-2026.6.19/cli/src/swa/cli/parsing.py +550 -0
  23. bas_swa-2026.6.19/cli/uv.lock +733 -0
  24. bas_swa-2026.6.19/core/.gitignore +179 -0
  25. bas_swa-2026.6.19/core/.idea/.gitignore +10 -0
  26. bas_swa-2026.6.19/core/.idea/inspectionProfiles/Project_Default.xml +855 -0
  27. bas_swa-2026.6.19/core/.idea/inspectionProfiles/profiles_settings.xml +6 -0
  28. bas_swa-2026.6.19/core/.idea/misc.xml +7 -0
  29. bas_swa-2026.6.19/core/.idea/modules.xml +8 -0
  30. bas_swa-2026.6.19/core/.idea/pyProjectModel.xml +7 -0
  31. bas_swa-2026.6.19/core/.idea/swa-core.iml +11 -0
  32. bas_swa-2026.6.19/core/.idea/vcs.xml +6 -0
  33. bas_swa-2026.6.19/core/.idea/workspace.xml +181 -0
  34. bas_swa-2026.6.19/core/README.md +0 -0
  35. bas_swa-2026.6.19/core/pyproject.toml +48 -0
  36. bas_swa-2026.6.19/core/src/swa/constants.py +225 -0
  37. bas_swa-2026.6.19/core/src/swa/core/__init__.py +0 -0
  38. bas_swa-2026.6.19/core/src/swa/core/containers/__init__.py +21 -0
  39. bas_swa-2026.6.19/core/src/swa/core/containers/_datastore.py +153 -0
  40. bas_swa-2026.6.19/core/src/swa/core/containers/_namespace.py +884 -0
  41. bas_swa-2026.6.19/core/src/swa/core/util/__init__.py +48 -0
  42. bas_swa-2026.6.19/core/src/swa/core/util/file.py +193 -0
  43. bas_swa-2026.6.19/core/src/swa/core/util/func.py +511 -0
  44. bas_swa-2026.6.19/core/src/swa/core/util/iter.py +297 -0
  45. bas_swa-2026.6.19/core/src/swa/core/util/meta.py +192 -0
  46. bas_swa-2026.6.19/core/src/swa/core/util/names.py +165 -0
  47. bas_swa-2026.6.19/core/src/swa/core/util/text.py +520 -0
  48. bas_swa-2026.6.19/core/src/swa/errors.py +141 -0
  49. bas_swa-2026.6.19/core/src/swa/types/__init__.py +56 -0
  50. bas_swa-2026.6.19/core/src/swa/types/_core.py +375 -0
  51. bas_swa-2026.6.19/core/tests/util/__init__.py +0 -0
  52. bas_swa-2026.6.19/core/tests/util/test_util_file.py +165 -0
  53. bas_swa-2026.6.19/core/tests/util/test_util_func.py +439 -0
  54. bas_swa-2026.6.19/core/tests/util/test_util_iter.py +270 -0
  55. bas_swa-2026.6.19/core/tests/util/test_util_meta.py +163 -0
  56. bas_swa-2026.6.19/core/uv.lock +541 -0
  57. bas_swa-2026.6.19/engine/.clang-format +69 -0
  58. bas_swa-2026.6.19/engine/.idea/.gitignore +10 -0
  59. bas_swa-2026.6.19/engine/.idea/codeStyles/Project.xml +134 -0
  60. bas_swa-2026.6.19/engine/.idea/codeStyles/codeStyleConfig.xml +5 -0
  61. bas_swa-2026.6.19/engine/.idea/editor.xml +103 -0
  62. bas_swa-2026.6.19/engine/.idea/engine.iml +2 -0
  63. bas_swa-2026.6.19/engine/.idea/fileTemplates/includes/C File Header.h +19 -0
  64. bas_swa-2026.6.19/engine/.idea/fileTemplates/internal/C Header File.h +2 -0
  65. bas_swa-2026.6.19/engine/.idea/fileTemplates/internal/C++ Class Header.h +11 -0
  66. bas_swa-2026.6.19/engine/.idea/inspectionProfiles/Project_Default.xml +1372 -0
  67. bas_swa-2026.6.19/engine/.idea/misc.xml +7 -0
  68. bas_swa-2026.6.19/engine/.idea/modules.xml +8 -0
  69. bas_swa-2026.6.19/engine/.idea/vcs.xml +6 -0
  70. bas_swa-2026.6.19/engine/.idea/workspace.xml +221 -0
  71. bas_swa-2026.6.19/engine/CMakeLists.txt +20 -0
  72. bas_swa-2026.6.19/engine/README.md +0 -0
  73. bas_swa-2026.6.19/engine/cmake-build-debug/.cmake/api/v1/query/cache-v2 +0 -0
  74. bas_swa-2026.6.19/engine/cmake-build-debug/.cmake/api/v1/query/cmakeFiles-v1 +0 -0
  75. bas_swa-2026.6.19/engine/cmake-build-debug/.cmake/api/v1/query/codemodel-v2 +0 -0
  76. bas_swa-2026.6.19/engine/cmake-build-debug/.cmake/api/v1/query/toolchains-v1 +0 -0
  77. bas_swa-2026.6.19/engine/cmake-build-debug/.cmake/api/v1/reply/cache-v2-d9554d1d3f7be49499c5.json +1339 -0
  78. bas_swa-2026.6.19/engine/cmake-build-debug/.cmake/api/v1/reply/cmakeFiles-v1-552b7a724bcc41e731f5.json +204 -0
  79. bas_swa-2026.6.19/engine/cmake-build-debug/.cmake/api/v1/reply/codemodel-v2-4c94be3e1aaab440f113.json +61 -0
  80. bas_swa-2026.6.19/engine/cmake-build-debug/.cmake/api/v1/reply/directory-.-Debug-9ad1a58d4644cf6543fa.json +19 -0
  81. bas_swa-2026.6.19/engine/cmake-build-debug/.cmake/api/v1/reply/index-2026-06-22T21-47-34-0060.json +108 -0
  82. bas_swa-2026.6.19/engine/cmake-build-debug/.cmake/api/v1/reply/target-engine-Debug-e959042cddb98826bddc.json +156 -0
  83. bas_swa-2026.6.19/engine/cmake-build-debug/.cmake/api/v1/reply/toolchains-v1-f7b068a7037a11befb28.json +111 -0
  84. bas_swa-2026.6.19/engine/cmake-build-debug/.gitignore +2 -0
  85. bas_swa-2026.6.19/engine/cmake-build-debug/CMakeCache.txt +415 -0
  86. bas_swa-2026.6.19/engine/cmake-build-debug/CMakeFiles/4.2.2/CMakeCCompiler.cmake +85 -0
  87. bas_swa-2026.6.19/engine/cmake-build-debug/CMakeFiles/4.2.2/CMakeCXXCompiler.cmake +109 -0
  88. bas_swa-2026.6.19/engine/cmake-build-debug/CMakeFiles/4.2.2/CMakeDetermineCompilerABI_C.bin +0 -0
  89. bas_swa-2026.6.19/engine/cmake-build-debug/CMakeFiles/4.2.2/CMakeDetermineCompilerABI_CXX.bin +0 -0
  90. bas_swa-2026.6.19/engine/cmake-build-debug/CMakeFiles/4.2.2/CMakeSystem.cmake +15 -0
  91. bas_swa-2026.6.19/engine/cmake-build-debug/CMakeFiles/4.2.2/CompilerIdC/CMakeCCompilerId.c +934 -0
  92. bas_swa-2026.6.19/engine/cmake-build-debug/CMakeFiles/4.2.2/CompilerIdC/a.out +0 -0
  93. bas_swa-2026.6.19/engine/cmake-build-debug/CMakeFiles/4.2.2/CompilerIdCXX/CMakeCXXCompilerId.cpp +949 -0
  94. bas_swa-2026.6.19/engine/cmake-build-debug/CMakeFiles/4.2.2/CompilerIdCXX/a.out +0 -0
  95. bas_swa-2026.6.19/engine/cmake-build-debug/CMakeFiles/CMakeConfigureLog.yaml +2456 -0
  96. bas_swa-2026.6.19/engine/cmake-build-debug/CMakeFiles/InstallScripts.json +7 -0
  97. bas_swa-2026.6.19/engine/cmake-build-debug/CMakeFiles/TargetDirectories.txt +3 -0
  98. bas_swa-2026.6.19/engine/cmake-build-debug/CMakeFiles/clion-Debug-log.txt +4 -0
  99. bas_swa-2026.6.19/engine/cmake-build-debug/CMakeFiles/clion-environment.txt +4 -0
  100. bas_swa-2026.6.19/engine/cmake-build-debug/CMakeFiles/cmake.check_cache +1 -0
  101. bas_swa-2026.6.19/engine/cmake-build-debug/CMakeFiles/engine.dir/CXXDependInfo.json +36 -0
  102. bas_swa-2026.6.19/engine/cmake-build-debug/CMakeFiles/rules.ninja +94 -0
  103. bas_swa-2026.6.19/engine/cmake-build-debug/Testing/Temporary/LastTest.log +3 -0
  104. bas_swa-2026.6.19/engine/cmake-build-debug/build.ninja +196 -0
  105. bas_swa-2026.6.19/engine/cmake-build-debug/cmake_install.cmake +61 -0
  106. bas_swa-2026.6.19/engine/cmake-build-debug/compile_commands.json +14 -0
  107. bas_swa-2026.6.19/engine/cmake-build-debug/version.hpp +22 -0
  108. bas_swa-2026.6.19/engine/main.cpp +18 -0
  109. bas_swa-2026.6.19/engine/pyproject.toml +50 -0
  110. bas_swa-2026.6.19/engine/src/cxx/defines.hpp +17 -0
  111. bas_swa-2026.6.19/engine/src/cxx/epoch/conversions.cpp +14 -0
  112. bas_swa-2026.6.19/engine/src/cxx/epoch/conversions.hpp +141 -0
  113. bas_swa-2026.6.19/engine/src/cxx/epoch/j2000.cpp +122 -0
  114. bas_swa-2026.6.19/engine/src/cxx/epoch/j2000.hpp +126 -0
  115. bas_swa-2026.6.19/engine/src/cxx/version.hpp.in +22 -0
  116. bas_swa-2026.6.19/engine/src/swa/__init__.py +0 -0
  117. bas_swa-2026.6.19/engine/uv.lock +348 -0
  118. bas_swa-2026.6.19/find +0 -0
  119. bas_swa-2026.6.19/math/.gitignore +50 -0
  120. bas_swa-2026.6.19/math/README.md +0 -0
  121. bas_swa-2026.6.19/math/pyproject.toml +30 -0
  122. bas_swa-2026.6.19/math/src/swa/math/__init__.py +0 -0
  123. bas_swa-2026.6.19/math/src/swa/math/binning.py +0 -0
  124. bas_swa-2026.6.19/math/src/swa/math/interp/__init__.py +0 -0
  125. bas_swa-2026.6.19/math/src/swa/math/interp/_interp.py +0 -0
  126. bas_swa-2026.6.19/math/src/swa/math/interp/kernels.py +0 -0
  127. bas_swa-2026.6.19/math/src/swa/math/nice.py +0 -0
  128. bas_swa-2026.6.19/math/src/swa/math/regression.py +0 -0
  129. bas_swa-2026.6.19/math/src/swa/math/rolling/__init__.py +0 -0
  130. bas_swa-2026.6.19/math/src/swa/math/rolling/_rolling.py +0 -0
  131. bas_swa-2026.6.19/math/src/swa/math/rolling/kernels.py +0 -0
  132. bas_swa-2026.6.19/math/src/swa/math/smoothing/__init__.py +0 -0
  133. bas_swa-2026.6.19/math/src/swa/math/smoothing/_smoothing.py +0 -0
  134. bas_swa-2026.6.19/math/src/swa/math/smoothing/kernels_nu.py +0 -0
  135. bas_swa-2026.6.19/math/src/swa/math/smoothing/kernels_u.py +0 -0
  136. bas_swa-2026.6.19/math/src/swa/math/util/__init__.py +0 -0
  137. bas_swa-2026.6.19/math/src/swa/math/util/_util.py +0 -0
  138. bas_swa-2026.6.19/math/src/swa/math/util/kernels.py +0 -0
  139. bas_swa-2026.6.19/math/src/swa/math/windows.py +0 -0
  140. bas_swa-2026.6.19/ns/README.md +0 -0
  141. bas_swa-2026.6.19/ns/pyproject.toml +0 -0
  142. bas_swa-2026.6.19/pyproject.toml +19 -0
  143. bas_swa-2026.6.19/time/.gitignore +50 -0
  144. bas_swa-2026.6.19/time/.idea/.gitignore +10 -0
  145. bas_swa-2026.6.19/time/.idea/.name +1 -0
  146. bas_swa-2026.6.19/time/.idea/inspectionProfiles/Project_Default.xml +855 -0
  147. bas_swa-2026.6.19/time/.idea/inspectionProfiles/profiles_settings.xml +6 -0
  148. bas_swa-2026.6.19/time/.idea/misc.xml +6 -0
  149. bas_swa-2026.6.19/time/.idea/modules.xml +8 -0
  150. bas_swa-2026.6.19/time/.idea/pyProjectModel.xml +7 -0
  151. bas_swa-2026.6.19/time/.idea/swa-time.iml +11 -0
  152. bas_swa-2026.6.19/time/.idea/vcs.xml +6 -0
  153. bas_swa-2026.6.19/time/.idea/workspace.xml +173 -0
  154. bas_swa-2026.6.19/time/README.md +0 -0
  155. bas_swa-2026.6.19/time/pyproject.toml +36 -0
  156. bas_swa-2026.6.19/time/src/swa/time/__init__.py +95 -0
  157. bas_swa-2026.6.19/time/src/swa/time/_dateiter.py +0 -0
  158. bas_swa-2026.6.19/time/src/swa/time/_daterange.py +246 -0
  159. bas_swa-2026.6.19/time/src/swa/time/_delta.py +463 -0
  160. bas_swa-2026.6.19/time/src/swa/time/_j2000.py +895 -0
  161. bas_swa-2026.6.19/time/src/swa/time/_jdarray.py +499 -0
  162. bas_swa-2026.6.19/time/src/swa/time/_parse.py +0 -0
  163. bas_swa-2026.6.19/time/src/swa/time/conversions.py +1190 -0
  164. bas_swa-2026.6.19/time/src/swa/time/util.py +346 -0
  165. bas_swa-2026.6.19/time/uv.lock +330 -0
  166. bas_swa-2026.6.19/tools/.idea/.gitignore +10 -0
  167. bas_swa-2026.6.19/tools/.idea/inspectionProfiles/Project_Default.xml +855 -0
  168. bas_swa-2026.6.19/tools/.idea/inspectionProfiles/profiles_settings.xml +6 -0
  169. bas_swa-2026.6.19/tools/.idea/misc.xml +6 -0
  170. bas_swa-2026.6.19/tools/.idea/modules.xml +8 -0
  171. bas_swa-2026.6.19/tools/.idea/pyProjectModel.xml +7 -0
  172. bas_swa-2026.6.19/tools/.idea/swa-tools.iml +11 -0
  173. bas_swa-2026.6.19/tools/.idea/vcs.xml +6 -0
  174. bas_swa-2026.6.19/tools/.idea/workspace.xml +127 -0
  175. bas_swa-2026.6.19/tools/README.md +0 -0
  176. bas_swa-2026.6.19/tools/pyproject.toml +41 -0
  177. bas_swa-2026.6.19/tools/src/swa/tools/__init__.py +0 -0
  178. bas_swa-2026.6.19/tools/src/swa/tools/dev/__init__.py +29 -0
  179. bas_swa-2026.6.19/tools/src/swa/tools/dev/compile/__init__.py +34 -0
  180. bas_swa-2026.6.19/tools/src/swa/tools/dev/compile/activity.py +309 -0
  181. bas_swa-2026.6.19/tools/src/swa/tools/dev/compile/satellite.py +431 -0
  182. bas_swa-2026.6.19/tools/src/swa/tools/dev/compile/var.py +310 -0
  183. bas_swa-2026.6.19/tools/src/swa/tools/dev/package.py +205 -0
  184. bas_swa-2026.6.19/tools/src/swa/tools/swa.py +34 -0
  185. bas_swa-2026.6.19/tools/uv.lock +414 -0
  186. bas_swa-2026.6.19/types/.idea/.gitignore +10 -0
  187. bas_swa-2026.6.19/types/.idea/inspectionProfiles/Project_Default.xml +855 -0
  188. bas_swa-2026.6.19/types/.idea/inspectionProfiles/profiles_settings.xml +6 -0
  189. bas_swa-2026.6.19/types/.idea/misc.xml +7 -0
  190. bas_swa-2026.6.19/types/.idea/modules.xml +8 -0
  191. bas_swa-2026.6.19/types/.idea/types.iml +12 -0
  192. bas_swa-2026.6.19/types/.idea/vcs.xml +6 -0
  193. bas_swa-2026.6.19/types/.idea/workspace.xml +98 -0
  194. bas_swa-2026.6.19/types/README.md +0 -0
  195. bas_swa-2026.6.19/types/pyproject.toml +51 -0
  196. bas_swa-2026.6.19/types/uv.lock +502 -0
  197. bas_swa-2026.6.19/uv.lock +8 -0
@@ -0,0 +1,10 @@
1
+ # Python-generated files
2
+ __pycache__/
3
+ *.py[oc]
4
+ build/
5
+ dist/
6
+ wheels/
7
+ *.egg-info
8
+
9
+ # Virtual environments
10
+ .venv
@@ -0,0 +1,10 @@
1
+ Metadata-Version: 2.4
2
+ Name: bas-swa
3
+ Version: 2026.6.19
4
+ Summary: Aaron's SWA namespace package
5
+ License: MPL-2.0
6
+ Classifier: License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)
7
+ Classifier: Operating System :: OS Independent
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Programming Language :: Python :: 3.14
10
+ Requires-Python: >=3.14
File without changes
@@ -0,0 +1,179 @@
1
+ .idea/
2
+
3
+ # Created by https://www.toptal.com/developers/gitignore/api/python
4
+ # Edit at https://www.toptal.com/developers/gitignore?templates=python
5
+
6
+ ### Python ###
7
+ # Byte-compiled / optimized / DLL files
8
+ __pycache__/
9
+ *.py[cod]
10
+ *$py.class
11
+ .DS_Store
12
+
13
+ # C extensions
14
+ *.so
15
+
16
+ # Distribution / packaging
17
+ .Python
18
+ build/
19
+ develop-eggs/
20
+ dist/
21
+ downloads/
22
+ eggs/
23
+ .eggs/
24
+ lib/
25
+ lib64/
26
+ parts/
27
+ sdist/
28
+ var/
29
+ wheels/
30
+ share/python-wheels/
31
+ *.egg-info/
32
+ .installed.cfg
33
+ *.egg
34
+ MANIFEST
35
+
36
+ # PyInstaller
37
+ # Usually these files are written by a python script from a template
38
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
39
+ *.manifest
40
+ *.spec
41
+
42
+ # Installer logs
43
+ pip-log.txt
44
+ pip-delete-this-directory.txt
45
+
46
+ # Unit test / coverage reports
47
+ htmlcov/
48
+ .tox/
49
+ .nox/
50
+ .coverage
51
+ .coverage.*
52
+ .cache
53
+ nosetests.xml
54
+ coverage.xml
55
+ *.cover
56
+ *.py,cover
57
+ .hypothesis/
58
+ .pytest_cache/
59
+ cover/
60
+
61
+ # Translations
62
+ *.mo
63
+ *.pot
64
+
65
+ # Django stuff:
66
+ *.log
67
+ local_settings.py
68
+ db.sqlite3
69
+ db.sqlite3-journal
70
+
71
+ # Flask stuff:
72
+ instance/
73
+ .webassets-cache
74
+
75
+ # Scrapy stuff:
76
+ .scrapy
77
+
78
+ # Sphinx documentation
79
+ docs/_build/
80
+
81
+ # PyBuilder
82
+ .pybuilder/
83
+ target/
84
+
85
+ # Jupyter Notebook
86
+ .ipynb_checkpoints
87
+
88
+ # IPython
89
+ profile_default/
90
+ ipython_config.py
91
+
92
+ # pyenv
93
+ # For a library or package, you might want to ignore these files since the code is
94
+ # intended to run in multiple environments; otherwise, check them in:
95
+ # .python-version
96
+
97
+ # pipenv
98
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
99
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
100
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
101
+ # install all needed dependencies.
102
+ #Pipfile.lock
103
+
104
+ # poetry
105
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
106
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
107
+ # commonly ignored for libraries.
108
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
109
+ #poetry.lock
110
+
111
+ # pdm
112
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
113
+ #pdm.lock
114
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
115
+ # in version control.
116
+ # https://pdm.fming.dev/#use-with-ide
117
+ .pdm.toml
118
+
119
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
120
+ __pypackages__/
121
+
122
+ # Celery stuff
123
+ celerybeat-schedule
124
+ celerybeat.pid
125
+
126
+ # SageMath parsed files
127
+ *.sage.py
128
+
129
+ # Environments
130
+ .env
131
+ .venv
132
+ env/
133
+ venv/
134
+ ENV/
135
+ env.bak/
136
+ venv.bak/
137
+
138
+ # Spyder project settings
139
+ .spyderproject
140
+ .spyproject
141
+
142
+ # Rope project settings
143
+ .ropeproject
144
+
145
+ # mkdocs documentation
146
+ /site
147
+
148
+ # mypy
149
+ .mypy_cache/
150
+ .dmypy.json
151
+ dmypy.json
152
+
153
+ # Pyre type checker
154
+ .pyre/
155
+
156
+ # pytype static type analyzer
157
+ .pytype/
158
+
159
+ # Cython debug symbols
160
+ cython_debug/
161
+
162
+ # PyCharm
163
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
164
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
165
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
166
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
167
+ #.idea/
168
+
169
+ ### Python Patch ###
170
+ # Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration
171
+ poetry.toml
172
+
173
+ # ruff
174
+ .ruff_cache/
175
+
176
+ # LSP config files
177
+ pyrightconfig.json
178
+
179
+ # End of https://www.toptal.com/developers/gitignore/api/python
@@ -0,0 +1,10 @@
1
+ # Default ignored files
2
+ /shelf/
3
+ /workspace.xml
4
+ # Editor-based HTTP Client requests
5
+ /httpRequests/
6
+ # Ignored default folder with query files
7
+ /queries/
8
+ # Datasource local storage ignored files
9
+ /dataSources/
10
+ /dataSources.local.xml