-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (37 loc) · 1001 Bytes
/
pyproject.toml
File metadata and controls
41 lines (37 loc) · 1001 Bytes
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
[project]
name = "code_explainer"
version = "0.1.0"
description = "code-explainer using crewAI"
authors = [{ name = "Nicola Procopio", email = "nicola.procopio@acsoftware.it" }]
requires-python = ">=3.10,<3.13"
dependencies = [
"crewai[tools]>=0.98.0,<1.0.0",
"plantweb>=1.2,<2.0",
"gitpython>=3.1.44,<4.0",
"esprima>=4.0.1,<5.0",
"tree-sitter==0.24.0",
"tree-sitter-languages==1.10.2",
"panel==1.6.0",
"google-generativeai==0.8.4",
"groq==0.25.0",
"pytest==8.2.1",
"qdrant-client[fastembed]==1.13.2",
"pymupdf>=1.25.3,<2.0",
"javalang>=0.13,<1.0",
"streamlit==1.43.2",
]
[project.scripts]
code_explainer = "code_explainer.main:run"
run_crew = "code_explainer.main:run"
train = "code_explainer.main:train"
replay = "code_explainer.main:replay"
test = "code_explainer.main:test"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.crewai]
type = "crew"
[tool.uv]
override-dependencies = [
"lancedb==0.17.1",
]