-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (48 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
53 lines (48 loc) · 1.1 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "semindex"
version = "0.5.0"
description = "Local semantic codebase indexer (Python-only, CPU-only)"
authors = [{ name = "OpenSource Syndicate" }]
readme = "README.md"
requires-python = "==3.12.11"
dependencies = [
"faiss-cpu==1.12.0",
"transformers==4.44.2",
"torch==2.9.0",
"sentencepiece==0.2.0",
"tqdm==4.66.5",
"numpy==1.26.4",
"elasticsearch==8.15.0",
"sentence-transformers==5.1.2",
"requests==2.32.3",
"beautifulsoup4==4.14.2",
"html2text==2024.2.26",
"toml>=0.10.2",
"llama-cpp-python>=0.3.16",
"colorama>=0.4.6",
"watchdog>=4.0.0",
"psutil>=5.9.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.2",
"pytest-cov>=5.0",
"ruff>=0.6",
]
languages = [
"tree-sitter>=0.20",
"tree-sitter-languages>=1.10",
]
[project.scripts]
semindex = "semindex.cli:main"
[tool.pytest.ini_options]
addopts = "-q"
testpaths = ["tests"]
[dependency-groups]
languages = [
"tree-sitter==0.20.1",
"tree-sitter-languages==1.10.2",
]