cocoindex-code 0.1.9__tar.gz → 0.1.10__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.
- {cocoindex_code-0.1.9 → cocoindex_code-0.1.10}/PKG-INFO +18 -6
- {cocoindex_code-0.1.9 → cocoindex_code-0.1.10}/README.md +16 -4
- {cocoindex_code-0.1.9 → cocoindex_code-0.1.10}/pyproject.toml +1 -1
- {cocoindex_code-0.1.9 → cocoindex_code-0.1.10}/.gitignore +0 -0
- {cocoindex_code-0.1.9 → cocoindex_code-0.1.10}/LICENSE +0 -0
- {cocoindex_code-0.1.9 → cocoindex_code-0.1.10}/src/cocoindex_code/__init__.py +0 -0
- {cocoindex_code-0.1.9 → cocoindex_code-0.1.10}/src/cocoindex_code/__main__.py +0 -0
- {cocoindex_code-0.1.9 → cocoindex_code-0.1.10}/src/cocoindex_code/config.py +0 -0
- {cocoindex_code-0.1.9 → cocoindex_code-0.1.10}/src/cocoindex_code/indexer.py +0 -0
- {cocoindex_code-0.1.9 → cocoindex_code-0.1.10}/src/cocoindex_code/query.py +0 -0
- {cocoindex_code-0.1.9 → cocoindex_code-0.1.10}/src/cocoindex_code/schema.py +0 -0
- {cocoindex_code-0.1.9 → cocoindex_code-0.1.10}/src/cocoindex_code/server.py +0 -0
- {cocoindex_code-0.1.9 → cocoindex_code-0.1.10}/src/cocoindex_code/shared.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cocoindex-code
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.10
|
|
4
4
|
Summary: MCP server for indexing and querying codebases using CocoIndex
|
|
5
5
|
Project-URL: Homepage, https://github.com/cocoindex-io/cocoindex-code
|
|
6
6
|
Project-URL: Repository, https://github.com/cocoindex-io/cocoindex-code
|
|
@@ -17,7 +17,7 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.13
|
|
18
18
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
19
19
|
Requires-Python: >=3.11
|
|
20
|
-
Requires-Dist: cocoindex[litellm]==1.0.
|
|
20
|
+
Requires-Dist: cocoindex[litellm]==1.0.0a26
|
|
21
21
|
Requires-Dist: einops>=0.8.2
|
|
22
22
|
Requires-Dist: mcp>=1.0.0
|
|
23
23
|
Requires-Dist: numpy>=1.24.0
|
|
@@ -79,10 +79,15 @@ A super light-weight, effective embedded MCP **(AST-based)** that understand and
|
|
|
79
79
|
|
|
80
80
|
## Get Started - zero config, let's go!!
|
|
81
81
|
|
|
82
|
-
|
|
82
|
+
Using [pipx](https://pipx.pypa.io/stable/installation/):
|
|
83
|
+
```bash
|
|
84
|
+
pipx install cocoindex-code # first install
|
|
85
|
+
pipx upgrade cocoindex-code # upgrade
|
|
86
|
+
```
|
|
83
87
|
|
|
88
|
+
Using [uv](https://docs.astral.sh/uv/getting-started/installation/):
|
|
84
89
|
```bash
|
|
85
|
-
|
|
90
|
+
uv tool install --upgrade cocoindex-code --prerelease explicit --with "cocoindex>=1.0.0a24"
|
|
86
91
|
```
|
|
87
92
|
|
|
88
93
|
### Claude
|
|
@@ -377,10 +382,17 @@ Some Python installations (e.g. the one pre-installed on macOS) ship with a SQLi
|
|
|
377
382
|
brew install python3
|
|
378
383
|
```
|
|
379
384
|
|
|
380
|
-
Then re-install cocoindex-code
|
|
385
|
+
Then re-install cocoindex-code (see [Get Started](#get-started---zero-config-lets-go) for install options):
|
|
386
|
+
|
|
387
|
+
Using pipx:
|
|
388
|
+
```bash
|
|
389
|
+
pipx install cocoindex-code # first install
|
|
390
|
+
pipx upgrade cocoindex-code # upgrade
|
|
391
|
+
```
|
|
381
392
|
|
|
393
|
+
Using uv (install or upgrade):
|
|
382
394
|
```bash
|
|
383
|
-
|
|
395
|
+
uv tool install --upgrade cocoindex-code --prerelease explicit --with "cocoindex>=1.0.0a24"
|
|
384
396
|
```
|
|
385
397
|
|
|
386
398
|
## Large codebase / Enterprise
|
|
@@ -44,10 +44,15 @@ A super light-weight, effective embedded MCP **(AST-based)** that understand and
|
|
|
44
44
|
|
|
45
45
|
## Get Started - zero config, let's go!!
|
|
46
46
|
|
|
47
|
-
|
|
47
|
+
Using [pipx](https://pipx.pypa.io/stable/installation/):
|
|
48
|
+
```bash
|
|
49
|
+
pipx install cocoindex-code # first install
|
|
50
|
+
pipx upgrade cocoindex-code # upgrade
|
|
51
|
+
```
|
|
48
52
|
|
|
53
|
+
Using [uv](https://docs.astral.sh/uv/getting-started/installation/):
|
|
49
54
|
```bash
|
|
50
|
-
|
|
55
|
+
uv tool install --upgrade cocoindex-code --prerelease explicit --with "cocoindex>=1.0.0a24"
|
|
51
56
|
```
|
|
52
57
|
|
|
53
58
|
### Claude
|
|
@@ -342,10 +347,17 @@ Some Python installations (e.g. the one pre-installed on macOS) ship with a SQLi
|
|
|
342
347
|
brew install python3
|
|
343
348
|
```
|
|
344
349
|
|
|
345
|
-
Then re-install cocoindex-code
|
|
350
|
+
Then re-install cocoindex-code (see [Get Started](#get-started---zero-config-lets-go) for install options):
|
|
351
|
+
|
|
352
|
+
Using pipx:
|
|
353
|
+
```bash
|
|
354
|
+
pipx install cocoindex-code # first install
|
|
355
|
+
pipx upgrade cocoindex-code # upgrade
|
|
356
|
+
```
|
|
346
357
|
|
|
358
|
+
Using uv (install or upgrade):
|
|
347
359
|
```bash
|
|
348
|
-
|
|
360
|
+
uv tool install --upgrade cocoindex-code --prerelease explicit --with "cocoindex>=1.0.0a24"
|
|
349
361
|
```
|
|
350
362
|
|
|
351
363
|
## Large codebase / Enterprise
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|