forked from vitali87/code-graph-rag
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (65 loc) · 1.49 KB
/
pyproject.toml
File metadata and controls
73 lines (65 loc) · 1.49 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
[project]
name = "graph-code"
version = "0.0.24"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"loguru>=0.7.3",
"pydantic-ai-slim[google,openai,vertexai]>=0.2.18",
"pydantic-settings>=2.0.0",
"pymgclient>=1.4.0",
"python-dotenv>=1.1.0",
"toml>=0.10.2",
"tree-sitter-python>=0.23.6",
"tree-sitter==0.25.0",
"watchdog>=6.0.0",
"typer>=0.12.5",
"rich>=13.7.1",
"prompt-toolkit>=3.0.0",
"diff-match-patch>=20241021",
"click>=8.0.0",
"pytest-xdist>=3.8.0",
]
[tool.setuptools]
packages = ["codebase_rag"]
[project.optional-dependencies]
test = [
"pytest>=8.4.1",
"pytest-asyncio>=1.0.0",
]
dev = [
"ruff>=0.5.5",
"mypy>=1.11.0",
"pre-commit>=4.2.0",
]
treesitter-full = [
"tree-sitter-python>=0.23.6",
"tree-sitter-javascript>=0.23.1",
"tree-sitter-typescript>=0.23.2",
"tree-sitter-rust>=0.24.0",
"tree-sitter-go>=0.23.4",
"tree-sitter-scala>=0.24.0",
"tree-sitter-java>=0.23.5",
"tree-sitter-cpp>=0.23.0",
"tree-sitter-lua>=0.0.19",
]
[tool.ruff]
line-length = 88
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP"]
ignore = ["E501"]
[tool.ruff.format]
quote-style = "double"
[tool.mypy]
python_version = "3.12"
warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = true
disallow_untyped_defs = true
[dependency-groups]
dev = [
"pyinstaller>=6.14.1",
"types-toml>=0.10.8.20240310",
]