mikoshi 0.1.9__tar.gz → 0.1.12__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.
- {mikoshi-0.1.9 → mikoshi-0.1.12}/PKG-INFO +12 -3
- mikoshi-0.1.12/pyproject.toml +36 -0
- {mikoshi-0.1.9 → mikoshi-0.1.12}/setup.cfg +6 -1
- {mikoshi-0.1.9 → mikoshi-0.1.12}/src/mikoshi/__init__.py +1 -1
- {mikoshi-0.1.9 → mikoshi-0.1.12}/src/mikoshi.egg-info/PKG-INFO +12 -3
- {mikoshi-0.1.9 → mikoshi-0.1.12}/src/mikoshi.egg-info/SOURCES.txt +2 -0
- mikoshi-0.1.12/src/mikoshi.egg-info/entry_points.txt +3 -0
- mikoshi-0.1.12/src/mikoshi.egg-info/requires.txt +10 -0
- mikoshi-0.1.9/pyproject.toml +0 -22
- {mikoshi-0.1.9 → mikoshi-0.1.12}/README.md +0 -0
- {mikoshi-0.1.9 → mikoshi-0.1.12}/src/mikoshi/auth.py +0 -0
- {mikoshi-0.1.9 → mikoshi-0.1.12}/src/mikoshi/chunking.py +0 -0
- {mikoshi-0.1.9 → mikoshi-0.1.12}/src/mikoshi/cli.py +0 -0
- {mikoshi-0.1.9 → mikoshi-0.1.12}/src/mikoshi/config.py +0 -0
- {mikoshi-0.1.9 → mikoshi-0.1.12}/src/mikoshi/entitlements.py +0 -0
- {mikoshi-0.1.9 → mikoshi-0.1.12}/src/mikoshi/hashing.py +0 -0
- {mikoshi-0.1.9 → mikoshi-0.1.12}/src/mikoshi/ignore.py +0 -0
- {mikoshi-0.1.9 → mikoshi-0.1.12}/src/mikoshi/indexing/__init__.py +0 -0
- {mikoshi-0.1.9 → mikoshi-0.1.12}/src/mikoshi/indexing/file_scanner.py +0 -0
- {mikoshi-0.1.9 → mikoshi-0.1.12}/src/mikoshi/indexing/index_store.py +0 -0
- {mikoshi-0.1.9 → mikoshi-0.1.12}/src/mikoshi/indexing/indexer.py +0 -0
- {mikoshi-0.1.9 → mikoshi-0.1.12}/src/mikoshi/mcp_server/__init__.py +0 -0
- {mikoshi-0.1.9 → mikoshi-0.1.12}/src/mikoshi/mcp_server/server.py +0 -0
- {mikoshi-0.1.9 → mikoshi-0.1.12}/src/mikoshi/retrieval/__init__.py +0 -0
- {mikoshi-0.1.9 → mikoshi-0.1.12}/src/mikoshi/retrieval/hybrid.py +0 -0
- {mikoshi-0.1.9 → mikoshi-0.1.12}/src/mikoshi/retrieval/lexical.py +0 -0
- {mikoshi-0.1.9 → mikoshi-0.1.12}/src/mikoshi/retrieval/rerank.py +0 -0
- {mikoshi-0.1.9 → mikoshi-0.1.12}/src/mikoshi/retrieval/semantic.py +0 -0
- {mikoshi-0.1.9 → mikoshi-0.1.12}/src/mikoshi/utils/__init__.py +0 -0
- {mikoshi-0.1.9 → mikoshi-0.1.12}/src/mikoshi/utils/timer.py +0 -0
- {mikoshi-0.1.9 → mikoshi-0.1.12}/src/mikoshi/utils/types.py +0 -0
- {mikoshi-0.1.9 → mikoshi-0.1.12}/src/mikoshi.egg-info/dependency_links.txt +0 -0
- {mikoshi-0.1.9 → mikoshi-0.1.12}/src/mikoshi.egg-info/top_level.txt +0 -0
- {mikoshi-0.1.9 → mikoshi-0.1.12}/tests/test_auth.py +0 -0
- {mikoshi-0.1.9 → mikoshi-0.1.12}/tests/test_chunking.py +0 -0
- {mikoshi-0.1.9 → mikoshi-0.1.12}/tests/test_config.py +0 -0
- {mikoshi-0.1.9 → mikoshi-0.1.12}/tests/test_ignore.py +0 -0
- {mikoshi-0.1.9 → mikoshi-0.1.12}/tests/test_index_roundtrip.py +0 -0
|
@@ -1,11 +1,20 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mikoshi
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.12
|
|
4
4
|
Summary: Private local code search + MCP
|
|
5
|
-
Author:
|
|
5
|
+
Author: NEETlabs
|
|
6
6
|
License: MIT
|
|
7
|
-
Requires-Python: >=3.
|
|
7
|
+
Requires-Python: >=3.11
|
|
8
8
|
Description-Content-Type: text/markdown
|
|
9
|
+
Requires-Dist: numpy>=1.26
|
|
10
|
+
Requires-Dist: faiss-cpu>=1.7.4
|
|
11
|
+
Requires-Dist: pathspec>=0.11.2
|
|
12
|
+
Requires-Dist: sentence-transformers>=2.2.2
|
|
13
|
+
Requires-Dist: huggingface-hub>=0.20.0
|
|
14
|
+
Requires-Dist: httpx>=0.24.0
|
|
15
|
+
Requires-Dist: mcp>=1.0.0
|
|
16
|
+
Provides-Extra: dev
|
|
17
|
+
Requires-Dist: pytest>=7.4; extra == "dev"
|
|
9
18
|
|
|
10
19
|
```bash
|
|
11
20
|
curl -fsSL https://raw.githubusercontent.com/NEETlabs/Mikoshi/main/scripts/install.sh | bash
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=69", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "mikoshi"
|
|
7
|
+
version = "0.1.12"
|
|
8
|
+
description = "Private local code search + MCP"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.11"
|
|
11
|
+
authors = [{ name = "NEETlabs" }]
|
|
12
|
+
license = { text = "MIT" }
|
|
13
|
+
|
|
14
|
+
dependencies = [
|
|
15
|
+
"numpy>=1.26",
|
|
16
|
+
"faiss-cpu>=1.7.4",
|
|
17
|
+
"pathspec>=0.11.2",
|
|
18
|
+
"sentence-transformers>=2.2.2",
|
|
19
|
+
"huggingface-hub>=0.20.0",
|
|
20
|
+
"httpx>=0.24.0",
|
|
21
|
+
"mcp>=1.0.0",
|
|
22
|
+
]
|
|
23
|
+
|
|
24
|
+
[project.optional-dependencies]
|
|
25
|
+
dev = ["pytest>=7.4"]
|
|
26
|
+
|
|
27
|
+
[project.scripts]
|
|
28
|
+
mikoshi = "mikoshi.cli:main"
|
|
29
|
+
mikoshi-mcp = "mikoshi.mcp_server.server:main"
|
|
30
|
+
|
|
31
|
+
[tool.setuptools]
|
|
32
|
+
package-dir = {"" = "src"}
|
|
33
|
+
include-package-data = true
|
|
34
|
+
|
|
35
|
+
[tool.setuptools.packages.find]
|
|
36
|
+
where = ["src"]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[metadata]
|
|
2
2
|
name = mikoshi
|
|
3
|
-
version = 0.1.
|
|
3
|
+
version = 0.1.12
|
|
4
4
|
description = Private local code search + MCP
|
|
5
5
|
|
|
6
6
|
[options]
|
|
@@ -11,6 +11,11 @@ packages = find:
|
|
|
11
11
|
[options.packages.find]
|
|
12
12
|
where = src
|
|
13
13
|
|
|
14
|
+
[options.entry_points]
|
|
15
|
+
console_scripts =
|
|
16
|
+
mikoshi = mikoshi.cli:main
|
|
17
|
+
mikoshi-mcp = mikoshi.mcp_server.server:main
|
|
18
|
+
|
|
14
19
|
[egg_info]
|
|
15
20
|
tag_build =
|
|
16
21
|
tag_date = 0
|
|
@@ -1,11 +1,20 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mikoshi
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.12
|
|
4
4
|
Summary: Private local code search + MCP
|
|
5
|
-
Author:
|
|
5
|
+
Author: NEETlabs
|
|
6
6
|
License: MIT
|
|
7
|
-
Requires-Python: >=3.
|
|
7
|
+
Requires-Python: >=3.11
|
|
8
8
|
Description-Content-Type: text/markdown
|
|
9
|
+
Requires-Dist: numpy>=1.26
|
|
10
|
+
Requires-Dist: faiss-cpu>=1.7.4
|
|
11
|
+
Requires-Dist: pathspec>=0.11.2
|
|
12
|
+
Requires-Dist: sentence-transformers>=2.2.2
|
|
13
|
+
Requires-Dist: huggingface-hub>=0.20.0
|
|
14
|
+
Requires-Dist: httpx>=0.24.0
|
|
15
|
+
Requires-Dist: mcp>=1.0.0
|
|
16
|
+
Provides-Extra: dev
|
|
17
|
+
Requires-Dist: pytest>=7.4; extra == "dev"
|
|
9
18
|
|
|
10
19
|
```bash
|
|
11
20
|
curl -fsSL https://raw.githubusercontent.com/NEETlabs/Mikoshi/main/scripts/install.sh | bash
|
|
@@ -12,6 +12,8 @@ src/mikoshi/ignore.py
|
|
|
12
12
|
src/mikoshi.egg-info/PKG-INFO
|
|
13
13
|
src/mikoshi.egg-info/SOURCES.txt
|
|
14
14
|
src/mikoshi.egg-info/dependency_links.txt
|
|
15
|
+
src/mikoshi.egg-info/entry_points.txt
|
|
16
|
+
src/mikoshi.egg-info/requires.txt
|
|
15
17
|
src/mikoshi.egg-info/top_level.txt
|
|
16
18
|
src/mikoshi/indexing/__init__.py
|
|
17
19
|
src/mikoshi/indexing/file_scanner.py
|
mikoshi-0.1.9/pyproject.toml
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
[build-system]
|
|
2
|
-
requires = ["setuptools>=69", "wheel"]
|
|
3
|
-
build-backend = "setuptools.build_meta"
|
|
4
|
-
|
|
5
|
-
[project]
|
|
6
|
-
name = "mikoshi"
|
|
7
|
-
version = "0.1.9"
|
|
8
|
-
description = "Private local code search + MCP"
|
|
9
|
-
readme = "README.md"
|
|
10
|
-
requires-python = ">=3.9"
|
|
11
|
-
license = { text = "MIT" }
|
|
12
|
-
authors = [
|
|
13
|
-
{ name = "NEET" }
|
|
14
|
-
]
|
|
15
|
-
|
|
16
|
-
dependencies = []
|
|
17
|
-
|
|
18
|
-
[tool.setuptools]
|
|
19
|
-
package-dir = { "" = "src" }
|
|
20
|
-
|
|
21
|
-
[tool.setuptools.packages.find]
|
|
22
|
-
where = ["src"]
|
|
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
|
|
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
|
|
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
|