-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (39 loc) · 1.35 KB
/
pyproject.toml
File metadata and controls
43 lines (39 loc) · 1.35 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
[project]
name = "falkordb-code-graph"
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 = [{name = "Roi Lipman", email = "roilipman@gmail.com"}]
readme = "README.md"
requires-python = ">=3.12,<3.14"
dependencies = [
"graphrag-sdk>=0.8.1,<0.9.0",
"tree-sitter>=0.25.2,<0.26.0",
"validators>=0.35.0,<0.36.0",
"falkordb>=1.1.3,<2.0.0",
"tree-sitter-c>=0.24.1,<0.25.0",
"tree-sitter-python>=0.25.0,<0.26.0",
"tree-sitter-java>=0.23.5,<0.24.0",
"tree-sitter-javascript>=0.23.0,<0.26.0",
"tree-sitter-kotlin>=1.1.0,<2.0.0",
"tree-sitter-c-sharp>=0.23.1,<0.24.0",
"fastapi>=0.115.0,<1.0.0",
"uvicorn[standard]>=0.34.0,<1.0.0",
"python-dotenv>=1.0.1,<2.0.0",
"falkordb-multilspy>=0.1.0,<1.0.0",
"javatools>=1.6.0,<2.0.0",
"pygit2>=1.17.0,<2.0.0",
"typer>=0.24.0,<1.0.0",
]
[project.scripts]
cgraph = "api.cli:app"
[project.optional-dependencies]
test = [
"pytest>=9.0.2,<10.0.0",
"ruff>=0.11.0,<1.0.0",
"httpx>=0.28.0,<1.0.0",
]
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]