CoolFace
Apppublic

CamQuest/codesearch

sourceHugging Facemitupdated 2mo agoView on Hugging Face
0likes
pyproject.toml33 linesDownload Raw Back to root
1[build-system]2requires = ["hatchling"]3build-backend = "hatchling.build"4 5[project]6name = "codesearch"7version = "0.1.0"8description = "Semantic code search: BM25 vs dense vs hybrid — with rigorous eval"9requires-python = ">=3.11"10dependencies = [11    "sentence-transformers>=3.0.0",12    "qdrant-client>=1.9.0",13    "gradio>=4.36.0",14    "datasets>=2.20.0",15    "python-dotenv>=1.0.0",16    "numpy>=1.26.0",17    "tqdm>=4.66.0",18    "bm25s>=0.3.4",19]20 21[project.optional-dependencies]22dev = [23    "pytest>=8.0.0",24    "ruff>=0.4.0",25]26 27[tool.hatch.build.targets.wheel]28packages = ["src/codesearch"]29 30[tool.ruff]31line-length = 8832src = ["src"]33