tree-sitter-analyzer 0.7.0__tar.gz → 0.8.1__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.

Potentially problematic release.


This version of tree-sitter-analyzer might be problematic. Click here for more details.

Files changed (108) hide show
  1. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/.gitignore +281 -281
  2. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/.pre-commit-config.yaml +91 -91
  3. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/AI_COLLABORATION_GUIDE.md +273 -273
  4. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/CHANGELOG.md +603 -527
  5. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/CODE_STYLE_GUIDE.md +359 -359
  6. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/CONTRIBUTING.md +190 -190
  7. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/LLM_CODING_GUIDELINES.md +585 -585
  8. tree_sitter_analyzer-0.8.1/MCP_SETUP_DEVELOPERS.md +325 -0
  9. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/MCP_SETUP_USERS.md +206 -163
  10. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/PKG-INFO +27 -1
  11. tree_sitter_analyzer-0.8.1/PROJECT_ROOT_CONFIG.md +203 -0
  12. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/README.md +237 -214
  13. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/README_ja.md +214 -214
  14. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/README_zh.md +214 -214
  15. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/check_quality.py +131 -131
  16. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/docs/api.md +173 -173
  17. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/examples/BigService.java +1419 -1419
  18. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/examples/BigService.json +938 -938
  19. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/examples/BigService.summary.json +650 -650
  20. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/examples/JavaDocTest.java +78 -78
  21. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/examples/MultiClass.java +54 -54
  22. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/examples/Sample.java +178 -178
  23. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/examples/calculate_token_comparison.py +255 -255
  24. tree_sitter_analyzer-0.8.1/examples/project_root_demo.py +247 -0
  25. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/examples/sample.py +256 -256
  26. tree_sitter_analyzer-0.8.1/examples/security_demo.py +282 -0
  27. tree_sitter_analyzer-0.8.1/examples/security_integration_demo.py +216 -0
  28. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/llm_code_checker.py +384 -384
  29. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/pyproject.toml +4 -1
  30. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/pytest.ini +34 -34
  31. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/__init__.py +132 -132
  32. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/__main__.py +11 -11
  33. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/api.py +533 -533
  34. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/cli/__init__.py +39 -39
  35. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/cli/__main__.py +12 -12
  36. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/cli/commands/__init__.py +26 -26
  37. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/cli/commands/advanced_command.py +88 -88
  38. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/cli/commands/base_command.py +178 -160
  39. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/cli/commands/default_command.py +18 -18
  40. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/cli/commands/partial_read_command.py +141 -141
  41. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/cli/commands/query_command.py +88 -81
  42. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/cli/commands/structure_command.py +138 -138
  43. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/cli/commands/summary_command.py +101 -101
  44. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/cli/commands/table_command.py +235 -235
  45. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/cli/info_commands.py +121 -121
  46. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/cli_main.py +303 -297
  47. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/core/__init__.py +15 -15
  48. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/core/analysis_engine.py +580 -555
  49. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/core/cache_service.py +320 -320
  50. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/core/engine.py +566 -566
  51. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/core/parser.py +293 -293
  52. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/encoding_utils.py +459 -459
  53. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/exceptions.py +406 -337
  54. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/file_handler.py +210 -210
  55. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/formatters/__init__.py +1 -1
  56. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/formatters/base_formatter.py +167 -167
  57. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/formatters/formatter_factory.py +78 -78
  58. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/interfaces/__init__.py +9 -9
  59. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/interfaces/cli.py +528 -528
  60. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/interfaces/cli_adapter.py +343 -343
  61. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/interfaces/mcp_adapter.py +206 -206
  62. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/interfaces/mcp_server.py +425 -405
  63. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/languages/__init__.py +10 -10
  64. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/languages/javascript_plugin.py +446 -446
  65. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/languages/python_plugin.py +755 -755
  66. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/mcp/__init__.py +31 -31
  67. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/mcp/resources/__init__.py +44 -44
  68. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/mcp/resources/code_file_resource.py +209 -209
  69. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/mcp/server.py +408 -333
  70. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/mcp/tools/__init__.py +30 -30
  71. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/mcp/tools/analyze_scale_tool.py +673 -654
  72. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/mcp/tools/analyze_scale_tool_cli_compatible.py +247 -247
  73. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/mcp/tools/base_tool.py +54 -54
  74. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/mcp/tools/read_partial_tool.py +308 -300
  75. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/mcp/tools/table_format_tool.py +379 -362
  76. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/mcp/tools/universal_analyze_tool.py +559 -543
  77. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/mcp/utils/__init__.py +107 -107
  78. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/mcp/utils/error_handler.py +549 -549
  79. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/output_manager.py +253 -253
  80. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/plugins/__init__.py +280 -280
  81. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/plugins/base.py +529 -529
  82. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/plugins/manager.py +379 -379
  83. tree_sitter_analyzer-0.8.1/tree_sitter_analyzer/project_detector.py +317 -0
  84. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/queries/__init__.py +26 -26
  85. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/queries/java.py +391 -391
  86. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/queries/javascript.py +148 -148
  87. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/queries/python.py +285 -285
  88. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/queries/typescript.py +229 -229
  89. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/query_loader.py +257 -257
  90. tree_sitter_analyzer-0.8.1/tree_sitter_analyzer/security/__init__.py +22 -0
  91. tree_sitter_analyzer-0.8.1/tree_sitter_analyzer/security/boundary_manager.py +237 -0
  92. tree_sitter_analyzer-0.8.1/tree_sitter_analyzer/security/regex_checker.py +292 -0
  93. tree_sitter_analyzer-0.8.1/tree_sitter_analyzer/security/validator.py +241 -0
  94. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/table_formatter.py +652 -589
  95. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/utils.py +277 -277
  96. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/upload_to_pypi.py +170 -170
  97. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/uv.lock +836 -830
  98. tree_sitter_analyzer-0.7.0/MCP_SETUP_DEVELOPERS.md +0 -181
  99. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/DEPLOYMENT_GUIDE.md +0 -0
  100. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/build_standalone.py +0 -0
  101. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/core/query.py +0 -0
  102. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/formatters/java_formatter.py +0 -0
  103. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/formatters/python_formatter.py +0 -0
  104. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/language_detector.py +0 -0
  105. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/language_loader.py +0 -0
  106. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/languages/java_plugin.py +0 -0
  107. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/mcp/resources/project_stats_resource.py +0 -0
  108. {tree_sitter_analyzer-0.7.0 → tree_sitter_analyzer-0.8.1}/tree_sitter_analyzer/models.py +0 -0
@@ -1,281 +1,281 @@
1
- # Byte-compiled / optimized / DLL files
2
- __pycache__/
3
- *.py[cod]
4
- *$py.class
5
-
6
- # C extensions
7
- *.so
8
-
9
- # Distribution / packaging
10
- .Python
11
- build/
12
- develop-eggs/
13
- dist/
14
- downloads/
15
- eggs/
16
- .eggs/
17
- lib/
18
- lib64/
19
- parts/
20
- sdist/
21
- var/
22
- wheels/
23
- share/python-wheels/
24
- *.egg-info/
25
- .installed.cfg
26
- *.egg
27
- MANIFEST
28
-
29
- # PyInstaller
30
- # Usually these files are written by a python script from a template
31
- # before PyInstaller builds the exe, so as to inject date/other infos into it.
32
- *.manifest
33
- *.spec
34
-
35
- # Installer logs
36
- pip-log.txt
37
- pip-delete-this-directory.txt
38
-
39
- # Unit test / coverage reports
40
- htmlcov/
41
- .tox/
42
- .nox/
43
- .coverage
44
- .coverage.*
45
- .cache
46
- nosetests.xml
47
- coverage.xml
48
- *.cover
49
- *.py,cover
50
- .hypothesis/
51
- .pytest_cache/
52
- cover/
53
-
54
- # Translations
55
- *.mo
56
- *.pot
57
-
58
- # Django stuff:
59
- *.log
60
- local_settings.py
61
- db.sqlite3
62
- db.sqlite3-journal
63
-
64
- # Flask stuff:
65
- instance/
66
- .webassets-cache
67
-
68
- # Scrapy stuff:
69
- .scrapy
70
-
71
- # Sphinx documentation
72
- docs/_build/
73
-
74
- # PyBuilder
75
- .pybuilder/
76
- target/
77
-
78
- # Jupyter Notebook
79
- .ipynb_checkpoints
80
-
81
- # IPython
82
- profile_default/
83
- ipython_config.py
84
-
85
- # pyenv
86
- # For a library or package, you might want to ignore these files since the code is
87
- # intended to run in multiple environments; otherwise, check them in:
88
- # .python-version
89
-
90
- # pipenv
91
- # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
92
- # However, in case of collaboration, if having platform-specific dependencies or dependencies
93
- # having no cross-platform support, pipenv may install dependencies that don't work, or not
94
- # install all needed dependencies.
95
- #Pipfile.lock
96
-
97
- # poetry
98
- # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
99
- # This is especially recommended for binary packages to ensure reproducibility, and is more
100
- # commonly ignored for libraries.
101
- # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
102
- #poetry.lock
103
-
104
- # pdm
105
- # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
106
- #pdm.lock
107
- # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
108
- # in version control.
109
- # https://pdm.fming.dev/#use-with-ide
110
- .pdm.toml
111
-
112
- # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
113
- __pypackages__/
114
-
115
- # Celery stuff
116
- celerybeat-schedule
117
- celerybeat.pid
118
-
119
- # SageMath parsed files
120
- *.sage.py
121
-
122
- # Environments
123
- .env
124
- .venv
125
- env/
126
- venv/
127
- ENV/
128
- env.bak/
129
- venv.bak/
130
-
131
- # Spyder project settings
132
- .spyderproject
133
- .spyproject
134
-
135
- # Rope project settings
136
- .ropeproject
137
-
138
- # mkdocs documentation
139
- /site
140
-
141
- # mypy
142
- .mypy_cache/
143
- .dmypy.json
144
- dmypy.json
145
-
146
- # Pyre type checker
147
- .pyre/
148
-
149
- # pytype static type analyzer
150
- .pytype/
151
-
152
- # Cython debug symbols
153
- cython_debug/
154
-
155
- # PyCharm
156
- # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
157
- # be added to the global gitignore or merged into this project gitignore. For a PyCharm
158
- # project, it is recommended to use the following settings for the Project Structure:
159
- # File | Settings | Project Structure | Add Content Root | Exclude files | *.pyc
160
- .idea/
161
-
162
- # VS Code
163
- .vscode/
164
- *.code-workspace
165
-
166
- # Local History for Visual Studio Code
167
- .history/
168
-
169
- # Built Visual Studio Code Extensions
170
- *.vsix
171
-
172
- # macOS
173
- .DS_Store
174
- .AppleDouble
175
- .LSOverride
176
-
177
- # Icon must end with two \r
178
- Icon
179
-
180
- # Thumbnails
181
- ._*
182
-
183
- # Files that might appear in the root of a volume
184
- .DocumentRevisions-V100
185
- .fseventsd
186
- .Spotlight-V100
187
- .TemporaryItems
188
- .Trashes
189
- .VolumeIcon.icns
190
- .com.apple.timemachine.donotpresent
191
-
192
- # Directories potentially created on remote AFP share
193
- .AppleDB
194
- .AppleDesktop
195
- Network Trash Folder
196
- Temporary Items
197
- .apdisk
198
-
199
- # Windows
200
- Thumbs.db
201
- Thumbs.db:encryptable
202
- ehthumbs.db
203
- ehthumbs_vista.db
204
-
205
- # Dump file
206
- *.stackdump
207
-
208
- # Folder config file
209
- [Dd]esktop.ini
210
-
211
- # Recycle Bin used on file shares
212
- $RECYCLE.BIN/
213
-
214
- # Windows Installer files
215
- *.cab
216
- *.msi
217
- *.msix
218
- *.msm
219
- *.msp
220
-
221
- # Windows shortcuts
222
- *.lnk
223
-
224
- # Linux
225
- *~
226
-
227
- # temporary files which can be created if a process still has a handle open of a deleted file
228
- .fuse_hidden*
229
-
230
- # KDE directory preferences
231
- .directory
232
-
233
- # Linux trash folder which might appear on any partition or disk
234
- .Trash-*
235
-
236
- # .nfs files are created when an open file is removed but is still being accessed
237
- .nfs*
238
-
239
- # Project specific files
240
- error.log
241
- *.log
242
- input_handler.py
243
- prompt_config.json
244
- user_input_prompt.md
245
- ISSUE_TRACKING.md
246
- OPTIMIZATION_REPORT.md
247
-
248
-
249
- # Development and temporary files
250
- prompt_history/
251
- temp/
252
- tmp/
253
- .temp/
254
-
255
- # Tree-sitter specific
256
- tree-sitter-*/
257
- *.so
258
- *.dylib
259
- *.dll
260
-
261
- # UV lock file (keep uv.lock for reproducible builds)
262
- # uv.lock
263
-
264
- # Benchmark and performance files
265
- benchmark_results/
266
- performance_data/
267
-
268
- # Local configuration files
269
- local_config.py
270
- local_settings.py
271
- .local/
272
-
273
- # Editor backup files
274
- *~
275
- *.swp
276
- *.swo
277
- *#
278
- .#*
279
-
280
- # Compiled tree-sitter parsers
281
- parsers/
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ share/python-wheels/
24
+ *.egg-info/
25
+ .installed.cfg
26
+ *.egg
27
+ MANIFEST
28
+
29
+ # PyInstaller
30
+ # Usually these files are written by a python script from a template
31
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
32
+ *.manifest
33
+ *.spec
34
+
35
+ # Installer logs
36
+ pip-log.txt
37
+ pip-delete-this-directory.txt
38
+
39
+ # Unit test / coverage reports
40
+ htmlcov/
41
+ .tox/
42
+ .nox/
43
+ .coverage
44
+ .coverage.*
45
+ .cache
46
+ nosetests.xml
47
+ coverage.xml
48
+ *.cover
49
+ *.py,cover
50
+ .hypothesis/
51
+ .pytest_cache/
52
+ cover/
53
+
54
+ # Translations
55
+ *.mo
56
+ *.pot
57
+
58
+ # Django stuff:
59
+ *.log
60
+ local_settings.py
61
+ db.sqlite3
62
+ db.sqlite3-journal
63
+
64
+ # Flask stuff:
65
+ instance/
66
+ .webassets-cache
67
+
68
+ # Scrapy stuff:
69
+ .scrapy
70
+
71
+ # Sphinx documentation
72
+ docs/_build/
73
+
74
+ # PyBuilder
75
+ .pybuilder/
76
+ target/
77
+
78
+ # Jupyter Notebook
79
+ .ipynb_checkpoints
80
+
81
+ # IPython
82
+ profile_default/
83
+ ipython_config.py
84
+
85
+ # pyenv
86
+ # For a library or package, you might want to ignore these files since the code is
87
+ # intended to run in multiple environments; otherwise, check them in:
88
+ # .python-version
89
+
90
+ # pipenv
91
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
92
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
93
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
94
+ # install all needed dependencies.
95
+ #Pipfile.lock
96
+
97
+ # poetry
98
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
99
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
100
+ # commonly ignored for libraries.
101
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
102
+ #poetry.lock
103
+
104
+ # pdm
105
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
106
+ #pdm.lock
107
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
108
+ # in version control.
109
+ # https://pdm.fming.dev/#use-with-ide
110
+ .pdm.toml
111
+
112
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
113
+ __pypackages__/
114
+
115
+ # Celery stuff
116
+ celerybeat-schedule
117
+ celerybeat.pid
118
+
119
+ # SageMath parsed files
120
+ *.sage.py
121
+
122
+ # Environments
123
+ .env
124
+ .venv
125
+ env/
126
+ venv/
127
+ ENV/
128
+ env.bak/
129
+ venv.bak/
130
+
131
+ # Spyder project settings
132
+ .spyderproject
133
+ .spyproject
134
+
135
+ # Rope project settings
136
+ .ropeproject
137
+
138
+ # mkdocs documentation
139
+ /site
140
+
141
+ # mypy
142
+ .mypy_cache/
143
+ .dmypy.json
144
+ dmypy.json
145
+
146
+ # Pyre type checker
147
+ .pyre/
148
+
149
+ # pytype static type analyzer
150
+ .pytype/
151
+
152
+ # Cython debug symbols
153
+ cython_debug/
154
+
155
+ # PyCharm
156
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
157
+ # be added to the global gitignore or merged into this project gitignore. For a PyCharm
158
+ # project, it is recommended to use the following settings for the Project Structure:
159
+ # File | Settings | Project Structure | Add Content Root | Exclude files | *.pyc
160
+ .idea/
161
+
162
+ # VS Code
163
+ .vscode/
164
+ *.code-workspace
165
+
166
+ # Local History for Visual Studio Code
167
+ .history/
168
+
169
+ # Built Visual Studio Code Extensions
170
+ *.vsix
171
+
172
+ # macOS
173
+ .DS_Store
174
+ .AppleDouble
175
+ .LSOverride
176
+
177
+ # Icon must end with two \r
178
+ Icon
179
+
180
+ # Thumbnails
181
+ ._*
182
+
183
+ # Files that might appear in the root of a volume
184
+ .DocumentRevisions-V100
185
+ .fseventsd
186
+ .Spotlight-V100
187
+ .TemporaryItems
188
+ .Trashes
189
+ .VolumeIcon.icns
190
+ .com.apple.timemachine.donotpresent
191
+
192
+ # Directories potentially created on remote AFP share
193
+ .AppleDB
194
+ .AppleDesktop
195
+ Network Trash Folder
196
+ Temporary Items
197
+ .apdisk
198
+
199
+ # Windows
200
+ Thumbs.db
201
+ Thumbs.db:encryptable
202
+ ehthumbs.db
203
+ ehthumbs_vista.db
204
+
205
+ # Dump file
206
+ *.stackdump
207
+
208
+ # Folder config file
209
+ [Dd]esktop.ini
210
+
211
+ # Recycle Bin used on file shares
212
+ $RECYCLE.BIN/
213
+
214
+ # Windows Installer files
215
+ *.cab
216
+ *.msi
217
+ *.msix
218
+ *.msm
219
+ *.msp
220
+
221
+ # Windows shortcuts
222
+ *.lnk
223
+
224
+ # Linux
225
+ *~
226
+
227
+ # temporary files which can be created if a process still has a handle open of a deleted file
228
+ .fuse_hidden*
229
+
230
+ # KDE directory preferences
231
+ .directory
232
+
233
+ # Linux trash folder which might appear on any partition or disk
234
+ .Trash-*
235
+
236
+ # .nfs files are created when an open file is removed but is still being accessed
237
+ .nfs*
238
+
239
+ # Project specific files
240
+ error.log
241
+ *.log
242
+ input_handler.py
243
+ prompt_config.json
244
+ user_input_prompt.md
245
+ ISSUE_TRACKING.md
246
+ OPTIMIZATION_REPORT.md
247
+
248
+
249
+ # Development and temporary files
250
+ prompt_history/
251
+ temp/
252
+ tmp/
253
+ .temp/
254
+
255
+ # Tree-sitter specific
256
+ tree-sitter-*/
257
+ *.so
258
+ *.dylib
259
+ *.dll
260
+
261
+ # UV lock file (keep uv.lock for reproducible builds)
262
+ # uv.lock
263
+
264
+ # Benchmark and performance files
265
+ benchmark_results/
266
+ performance_data/
267
+
268
+ # Local configuration files
269
+ local_config.py
270
+ local_settings.py
271
+ .local/
272
+
273
+ # Editor backup files
274
+ *~
275
+ *.swp
276
+ *.swo
277
+ *#
278
+ .#*
279
+
280
+ # Compiled tree-sitter parsers
281
+ parsers/