code-explore-by-sql 0.1.0__py3-none-any.whl → 0.1.1__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: code-explore-by-sql
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: SQLite FTS5 (trigram) MCP server for code source search.
5
5
  Project-URL: Repository, https://github.com/didi514354875/code-explore-by-sql
6
6
  License-Expression: MIT
@@ -49,10 +49,10 @@ pip install code-explore-by-sql
49
49
 
50
50
  ```bash
51
51
  # Build index for your codebase
52
- uvx code-source-sql-build-db /path/to/source /path/to/output.db
52
+ uvx code-explore-by-sql-build-db /path/to/source /path/to/output.db
53
53
 
54
54
  # Smoke test with limited files
55
- uvx code-source-sql-build-db /path/to/source /path/to/output.db --limit 1000
55
+ uvx code-explore-by-sql-build-db /path/to/source /path/to/output.db --limit 1000
56
56
  ```
57
57
 
58
58
  Performance: ~84,700 files indexed in ~3.3 minutes on a 2-core machine.
@@ -22,8 +22,8 @@ code_source_sql/languages/kotlin.py,sha256=AsuDQHFG4Z6QWLNaPXS3L4xXP70hfpmcif2qr
22
22
  code_source_sql/languages/python.py,sha256=CLEVm3UcXKVi-5Ue1FkgNaixvsP_jB7QDfpot39aA-0,3987
23
23
  code_source_sql/languages/rust.py,sha256=vBqMsyeFMptk2Hl9Tp5rbj3F8QHTvqWi8whlhwJDYAc,4073
24
24
  code_source_sql/languages/swift.py,sha256=UtFiQki14A-QXwJlg2JK61PoMI_e9ZUtlLb3SUqtIe0,4325
25
- code_explore_by_sql-0.1.0.dist-info/METADATA,sha256=MKx9wA1szklj1C7QJ63O3u0r7VTIOX0lCp32Kchmhko,7332
26
- code_explore_by_sql-0.1.0.dist-info/WHEEL,sha256=mffPy8wBnZQn2VnJUU5jE99KsxaSfiyMHV9Yt0aLVxs,87
27
- code_explore_by_sql-0.1.0.dist-info/entry_points.txt,sha256=6WGaA6HTPD_ZLScWXGUpK81hl9MRM_McDqPu0OWD6Tc,114
28
- code_explore_by_sql-0.1.0.dist-info/licenses/LICENSE,sha256=SC5Fwf9HNtdRRBSyPXU9NWn3it1kbpEpXGOQbhxa7KQ,1063
29
- code_explore_by_sql-0.1.0.dist-info/RECORD,,
25
+ code_explore_by_sql-0.1.1.dist-info/METADATA,sha256=4oeh9zDJkmSyQCWWNkpf7ns4KPnwDLFtTCK72mMhdvk,7340
26
+ code_explore_by_sql-0.1.1.dist-info/WHEEL,sha256=mffPy8wBnZQn2VnJUU5jE99KsxaSfiyMHV9Yt0aLVxs,87
27
+ code_explore_by_sql-0.1.1.dist-info/entry_points.txt,sha256=jINy8vfMxUpfda8tLfpT3UJTspLufZewBmw94D_VS_0,122
28
+ code_explore_by_sql-0.1.1.dist-info/licenses/LICENSE,sha256=SC5Fwf9HNtdRRBSyPXU9NWn3it1kbpEpXGOQbhxa7KQ,1063
29
+ code_explore_by_sql-0.1.1.dist-info/RECORD,,
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ code-explore-by-sql = code_source_sql:main
3
+ code-explore-by-sql-build-db = code_source_sql.build_db:main
@@ -1,3 +0,0 @@
1
- [console_scripts]
2
- code-source-sql = code_source_sql:main
3
- code-source-sql-build-db = code_source_sql.build_db:main