-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (68 loc) · 1.85 KB
/
pyproject.toml
File metadata and controls
77 lines (68 loc) · 1.85 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
66
67
68
69
70
71
72
73
74
75
76
77
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "vectorless-code"
version = "0.1.1"
description = "Code search and navigation engine powered by vectorless, without vector database."
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.11"
keywords = ["code-search", "ast", "tree-sitter", "vectorless"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"vectorless>=0.1.13",
"typer>=0.9.0",
"rich",
"pyyaml>=6.0",
"pathspec>=0.12.1",
"tree-sitter>=0.22",
"tree-sitter-python>=0.21",
"tree-sitter-rust>=0.21",
"tree-sitter-go>=0.21",
"tree-sitter-javascript>=0.21",
"tree-sitter-typescript>=0.21",
"tree-sitter-java>=0.21",
"tree-sitter-c>=0.21",
"tree-sitter-cpp>=0.21",
"tree-sitter-ruby>=0.21",
"tree-sitter-kotlin>=0.21",
"tree-sitter-scala>=0.21",
"msgspec>=0.18.0",
"click>=8.0.0",
"fastmcp>=0.1.0",
"watchdog>=4.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"ruff>=0.1.0",
"mypy>=1.0.0",
]
[project.scripts]
vectorless-code = "vectorless_code:main"
vcc = "vectorless_code.cli:app"
[tool.hatch.build.targets.wheel]
packages = ["src/vectorless_code"]
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]
[tool.mypy]
python_version = "3.11"
strict = true
ignore_missing_imports = true
explicit_package_bases = true
files = ["src"]
[project.urls]
Homepage = "https://vectorless.dev/"
Repository = "https://github.com/vectorlessflow/vectorless-code"