-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
70 lines (67 loc) · 1.54 KB
/
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
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
[tool.poetry]
name = "codesearch-backend"
version = "0.1.0"
description = ""
authors = ["John"]
license = "MIT"
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.10.11"
alembic = "^1.13.2"
fastapi = ">=0.111.1,<0.112.0"
sqlalchemy = "^2.0.34"
uvicorn = "^0.30.3"
gitpython = "^3.1.43"
pydantic = {extras = ["email"], version = "^2.9.1"}
psycopg2 = "^2.9.9"
psycopg2-binary = "^2.9.9"
python-jose = "^3.3.0"
black = "^24.8.0"
sentry-sdk = {extras = ["fastapi"], version = "^2.14.0"}
anthropic = ">=0.39.0,<1"
infomap = "2.8.0"
intervaltree = "3.1.0"
llama-index = "0.10.59"
networkx = "3.3"
openai = ">=1.5.1"
python-dotenv = "1.0.1"
pyyaml = "6.0.1"
setuptools = "65.5.0"
simple-parsing = "0.1.5"
starlette = ">=0.37.2,<0.38.0"
tenacity = "8.5.0"
tiktoken = "0.7.0"
tree-sitter = "0.22.3"
tree-sitter-java = "0.21.0"
tree-sitter-python = "0.21.0"
typing-extensions = "^4.12.2"
bcrypt = "^4.2.0"
boto3 = "^1.35.19"
rapidfuzz = "^3.9.7"
faiss-cpu = "^1.8.0.post1"
astroid = "~3"
pylint = "^3.2.7"
pytest = "^8.3.3"
instructor = "~1"
sqlalchemy-utils = "^0.41.2"
numpy = "1.26.2"
dill = "^0.3.8"
colorama = "^0.4.6"
cattrs = "^23.2.3"
groq = { version = "^0.11.0", optional = true }
sqlmodel = "^0.0.21"
pillow = "^10.4.0"
matplotlib = "^3.9.2"
scipy = "^1.14.1"
plotly = "^5.24.1"
dspy = "^2.5.27"
ell-ai = "^0.0.15"
langchain-core = "^0.3.22"
langchain-openai = "^0.2.11"
langchain-anthropic = "^0.3.0"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.29.5"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"