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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cocoindex-code
3
- Version: 0.1.9
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.0a24
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
- Requires Python 3 (`pip3` comes pre-installed with Python).
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
- pip3 install -U cocoindex-code
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 with the Homebrew Python:
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
- pip3 install -U cocoindex-code
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
- Requires Python 3 (`pip3` comes pre-installed with Python).
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
- pip3 install -U cocoindex-code
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 with the Homebrew Python:
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
- pip3 install -U cocoindex-code
360
+ uv tool install --upgrade cocoindex-code --prerelease explicit --with "cocoindex>=1.0.0a24"
349
361
  ```
350
362
 
351
363
  ## Large codebase / Enterprise
@@ -23,7 +23,7 @@ classifiers = [
23
23
 
24
24
  dependencies = [
25
25
  "mcp>=1.0.0",
26
- "cocoindex[litellm]==1.0.0a24",
26
+ "cocoindex[litellm]==1.0.0a26",
27
27
  "sentence-transformers>=2.2.0",
28
28
  "sqlite-vec>=0.1.0",
29
29
  "pydantic>=2.0.0",
File without changes