-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (36 loc) · 1.08 KB
/
Copy pathpyproject.toml
File metadata and controls
39 lines (36 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[project]
name = "augmentus-code-index"
version = "0.3.0"
description = "Local MCP server for semantic code search across Augmentus repos"
requires-python = ">=3.11"
dependencies = [
"mcp[cli]",
"tree-sitter",
"tree-sitter-c-sharp",
"tree-sitter-cpp",
"tree-sitter-python",
"tree-sitter-javascript",
"tree-sitter-html",
"tree-sitter-rust",
"tree-sitter-typescript",
"tree-sitter-css",
"tree-sitter-lua",
"tree-sitter-go",
"chromadb",
"sentence-transformers",
"transformers",
"einops",
"onnxscript",
"PyYAML>=6.0",
"networkx",
]
# NOTE: onnxruntime is NOT listed in dependencies. The correct GPU-specific variant
# (onnxruntime-gpu for NVIDIA, onnxruntime-directml for AMD/Intel, or plain
# onnxruntime for CPU) is installed by setup.bat via scripts/detect_gpu.py.
# These packages share the same Python namespace and CONFLICT if co-installed.
# Never add any onnxruntime variant here — setup.bat handles it.
[project.optional-dependencies]
dev = ["pytest"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]