-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (51 loc) · 1.16 KB
/
Copy pathpyproject.toml
File metadata and controls
55 lines (51 loc) · 1.16 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
[tool.poetry]
name = "context0-python-backend"
version = "0.1.0"
description = ""
authors = ["Sunildt28 <sunil@prepto.com>"]
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = ">=3.11,<4.0"
fastapi = "^0.115.12"
uvicorn = { extras = ["standard"], version = "^0.34.1" }
httpx = "^0.28.1"
pydantic = "^2.6.0"
websockets = "^15.0.1"
clerk-backend-api = "^2.0.2"
sqlalchemy = "^2.0.40"
asyncpg = "^0.30.0"
alembic = "^1.15.2"
psycopg = "^3.2.6"
pydantic-settings = "^2.9.1"
pyfiglet = "^1.0.2"
termcolor = "^3.0.1"
jsonschema = "^4.23.0"
svix = "^1.66.0"
motor = "^3.7.1"
pymongo = "^4.13.2"
neo4j = "^5.28.1"
langchain = "^0.3.26"
openai = "^1.95.1"
python-dateutil = "^2.9.0.post0"
qdrant-client = "^1.14.3"
aiohttp = "^3.12.14"
pinecone = "<=7.3.0"
tiktoken = "^0.8.0"
anthropic = "^0.40.0"
google-generativeai = "^0.8.3"
jinja2 = "^3.1.4"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.1"
pre-commit = "^3.4.0"
black = "^24.3.0"
isort = "^5.13.2"
mypy = "^1.9.0"
debugpy = "^1.8.14"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
# Optional pytest.ini
# [pytest]
# addopts = -ra
# testpaths = ["tests"]