forked from Davidyz/VectorCode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (42 loc) · 1.03 KB
/
Copy pathpyproject.toml
File metadata and controls
49 lines (42 loc) · 1.03 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
[project]
name = "VectorCode"
dynamic = ["version"]
description = "A tool to vectorise repositories for RAG."
authors = [{ name = "Davidyz", email = "hzjlyz@gmail.com" }]
dependencies = [
"chromadb<=0.6.3",
"sentence-transformers>=3.2.0",
"pathspec",
"tabulate",
"shtab",
"numpy",
"psutil",
"aiohttp",
]
requires-python = ">=3.11,<3.14"
readme = "README.md"
license = { text = "MIT" }
[project.urls]
homepage = "https://github.com/Davidyz/VectorCode"
github = "https://github.com/Davidyz/VectorCode"
documentation = "https://github.com/Davidyz/VectorCode/blob/main/docs/cli.md"
[project.optional-dependencies]
intel = ['optimum[openvino]']
[project.scripts]
vectorcode = "vectorcode.main:main"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
distribution = true
[tool.pdm.version]
source = "file"
path = "./src/vectorcode/__init__.py"
[dependency-groups]
dev = [
"ipython>=8.31.0",
"ruff>=0.9.1",
"viztracer>=1.0.0",
"pre-commit>=4.0.1",
"pytest>=8.3.4",
]