code-memory 1.0.15__tar.gz → 1.0.16__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.
- {code_memory-1.0.15 → code_memory-1.0.16}/PKG-INFO +2 -1
- {code_memory-1.0.15 → code_memory-1.0.16}/pyproject.toml +2 -1
- {code_memory-1.0.15 → code_memory-1.0.16}/.github/workflows/ci.yml +0 -0
- {code_memory-1.0.15 → code_memory-1.0.16}/.github/workflows/publish.yml +0 -0
- {code_memory-1.0.15 → code_memory-1.0.16}/.github/workflows/release-binaries.yml +0 -0
- {code_memory-1.0.15 → code_memory-1.0.16}/.gitignore +0 -0
- {code_memory-1.0.15 → code_memory-1.0.16}/.python-version +0 -0
- {code_memory-1.0.15 → code_memory-1.0.16}/CHANGELOG.md +0 -0
- {code_memory-1.0.15 → code_memory-1.0.16}/CONTRIBUTING.md +0 -0
- {code_memory-1.0.15 → code_memory-1.0.16}/LICENSE +0 -0
- {code_memory-1.0.15 → code_memory-1.0.16}/Makefile +0 -0
- {code_memory-1.0.15 → code_memory-1.0.16}/README.md +0 -0
- {code_memory-1.0.15 → code_memory-1.0.16}/assets/logo.png +0 -0
- {code_memory-1.0.15 → code_memory-1.0.16}/code-memory.spec +0 -0
- {code_memory-1.0.15 → code_memory-1.0.16}/db.py +0 -0
- {code_memory-1.0.15 → code_memory-1.0.16}/doc_parser.py +0 -0
- {code_memory-1.0.15 → code_memory-1.0.16}/errors.py +0 -0
- {code_memory-1.0.15 → code_memory-1.0.16}/git_search.py +0 -0
- {code_memory-1.0.15 → code_memory-1.0.16}/hooks/hook-sentence_transformers.py +0 -0
- {code_memory-1.0.15 → code_memory-1.0.16}/hooks/hook-sqlite_vec.py +0 -0
- {code_memory-1.0.15 → code_memory-1.0.16}/hooks/hook-tree_sitter.py +0 -0
- {code_memory-1.0.15 → code_memory-1.0.16}/hooks/hook-tree_sitter_languages.py +0 -0
- {code_memory-1.0.15 → code_memory-1.0.16}/logging_config.py +0 -0
- {code_memory-1.0.15 → code_memory-1.0.16}/parser.py +0 -0
- {code_memory-1.0.15 → code_memory-1.0.16}/prompts/milestone_1.xml +0 -0
- {code_memory-1.0.15 → code_memory-1.0.16}/prompts/milestone_2.xml +0 -0
- {code_memory-1.0.15 → code_memory-1.0.16}/prompts/milestone_3.xml +0 -0
- {code_memory-1.0.15 → code_memory-1.0.16}/prompts/milestone_4.xml +0 -0
- {code_memory-1.0.15 → code_memory-1.0.16}/prompts/milestone_5.xml +0 -0
- {code_memory-1.0.15 → code_memory-1.0.16}/prompts/milestone_6.xml +0 -0
- {code_memory-1.0.15 → code_memory-1.0.16}/queries.py +0 -0
- {code_memory-1.0.15 → code_memory-1.0.16}/server.py +0 -0
- {code_memory-1.0.15 → code_memory-1.0.16}/tests/__init__.py +0 -0
- {code_memory-1.0.15 → code_memory-1.0.16}/tests/conftest.py +0 -0
- {code_memory-1.0.15 → code_memory-1.0.16}/tests/test_errors.py +0 -0
- {code_memory-1.0.15 → code_memory-1.0.16}/tests/test_logging.py +0 -0
- {code_memory-1.0.15 → code_memory-1.0.16}/tests/test_tools.py +0 -0
- {code_memory-1.0.15 → code_memory-1.0.16}/tests/test_validation.py +0 -0
- {code_memory-1.0.15 → code_memory-1.0.16}/uv.lock +0 -0
- {code_memory-1.0.15 → code_memory-1.0.16}/validation.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: code-memory
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.16
|
|
4
4
|
Summary: A deterministic, high-precision code intelligence MCP server
|
|
5
5
|
Project-URL: Homepage, https://github.com/kapillamba4/code-memory
|
|
6
6
|
Project-URL: Documentation, https://github.com/kapillamba4/code-memory#readme
|
|
@@ -16,6 +16,7 @@ Classifier: Programming Language :: Python :: 3.13
|
|
|
16
16
|
Classifier: Topic :: Software Development :: Code Generators
|
|
17
17
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
18
18
|
Requires-Python: >=3.13
|
|
19
|
+
Requires-Dist: einops>=0.8.0
|
|
19
20
|
Requires-Dist: gitpython>=3.1.46
|
|
20
21
|
Requires-Dist: markdown-it-py>=4.0.0
|
|
21
22
|
Requires-Dist: mcp[cli]>=1.26.0
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "code-memory"
|
|
7
|
-
version = "1.0.
|
|
7
|
+
version = "1.0.16"
|
|
8
8
|
description = "A deterministic, high-precision code intelligence MCP server"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "MIT"
|
|
@@ -21,6 +21,7 @@ classifiers = [
|
|
|
21
21
|
"Topic :: Software Development :: Code Generators",
|
|
22
22
|
]
|
|
23
23
|
dependencies = [
|
|
24
|
+
"einops>=0.8.0",
|
|
24
25
|
"gitpython>=3.1.46",
|
|
25
26
|
"pathspec>=0.12.1",
|
|
26
27
|
"markdown-it-py>=4.0.0",
|
|
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
|
|
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
|