-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (57 loc) · 1.6 KB
/
pyproject.toml
File metadata and controls
65 lines (57 loc) · 1.6 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
54
55
56
57
58
59
60
61
62
63
64
65
[project]
name = "vecgrep"
version = "1.7.0"
description = "Cursor-style vector search MCP plugin for Claude Code"
readme = "README.md"
license = { text = "MIT" }
authors = [{ name = "iamvirul" }]
keywords = ["mcp", "semantic-search", "embeddings", "claude", "code-search"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=3.12,<3.13"
dependencies = [
"mcp[cli]>=1.0,<2.0",
"fastembed>=0.4.0",
"sentence-transformers>=3.0,<4.0",
"tree-sitter-languages>=1.10,<2.0",
"numpy>=1.26",
"lancedb>=0.6,<1.0",
"pyarrow>=14.0",
"watchdog>=4.0,<5.0",
]
[project.urls]
Homepage = "https://github.com/VecGrep/VecGrep"
Repository = "https://github.com/VecGrep/VecGrep"
Issues = "https://github.com/VecGrep/VecGrep/issues"
[project.scripts]
vecgrep = "vecgrep.server:main"
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-cov>=5.0",
"ruff>=0.4.0",
"pyright>=1.1.360",
]
openai = ["openai>=1.0"]
voyage = ["voyageai>=0.3.0"]
gemini = ["google-genai>=1.0"]
cloud = ["openai>=1.0", "voyageai>=0.3.0", "google-genai>=1.0"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/vecgrep"]
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP"]
[tool.pyright]
pythonVersion = "3.12"
include = ["src"]
typeCheckingMode = "basic"