-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
29 lines (26 loc) · 986 Bytes
/
pyproject.toml
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
[tool.poetry]
name = "code-graph-backend"
version = "0.4.2"
description = "code_graph is designed to help developers visualize and analyze the structure of their source code. It takes source code as input and generates a graph representation, making it easier to understand relationships and dependencies within the codebase."
authors = ["Roi Lipman <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
graphrag-sdk = { version = "^0.5.0", extras = ["litellm"] }
tree-sitter = "^0.24.0"
validators = "^0.34.0"
falkordb = "^1.0.10"
tree-sitter-c = "^0.23.4"
tree-sitter-python = "^0.23.6"
tree-sitter-java = "^0.23.5"
flask = "^3.1.0"
python-dotenv = "^1.0.1"
multilspy = {git = "https://github.com/AviAvni/multilspy.git", rev = "python-init-params"}
javatools = "^1.6.0"
pygit2 = "^1.17.0"
toml = "^0.10.2"
[tool.poetry.group.test.dependencies]
pytest = "^8.2.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"