-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (79 loc) · 2.06 KB
/
Copy pathpyproject.toml
File metadata and controls
83 lines (79 loc) · 2.06 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[project]
name = "backend"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"asyncpg>=0.30.0",
"cryptography>=46.0.5",
"faiss-cpu==1.12.0",
"fastapi>=0.117.0",
"fastmcp>=2.12.2",
"google-cloud-storage>=2.19.0",
"httpx>=0.28.1",
"huggingface-hub[cli]==0.34.4",
"langchain==0.3.27",
"langchain-community==0.3.27",
"langchain-google-community[vertexaisearch]>=2.0.0",
"langchain-google-genai==2.1.9",
"langchain-google-vertexai==2.0.28",
"langchain-huggingface==0.3.1",
"langchain-mcp-adapters>=0.1.9",
"langchain-ollama==0.3.6",
"langgraph>=0.7.0",
"langgraph-checkpoint>=3.0.0",
"markdown==3.8.2",
"myst-parser==4.0.1",
"nest-asyncio>=1.6.0",
"nltk==3.9.2",
"openai==1.100.2",
"protobuf>=5.29.6",
"psycopg2-binary>=2.9.11",
"pydantic>=2.11.7",
"pypdf==6.7.1",
"rank-bm25==0.2.2",
"rich>=13.7.0",
"sentence-transformers>=5.1.0",
"sphinx==8.1.3",
"sphinx-autobuild==2024.10.3",
"sphinx-book-theme==1.1.4",
"sphinx-copybutton==0.5.2",
"sphinx-external-toc==1.0.1",
"sphinxcontrib-mermaid==1.0.0",
"sqlalchemy>=2.0.43",
"starlette>=0.49.1",
"unstructured==0.18.18",
]
[dependency-groups]
dev = [
"beautifulsoup4==4.12.3",
"mypy>=1.17.1",
"pre-commit==3.7.1",
"pytest==8.3.2",
"pytest-asyncio==0.23.8",
"pytest-cov==5.0.0",
"pytest-html==4.1.1",
"pytest-xdist==3.6.0",
"ruff==0.5.1",
"types-beautifulsoup4==4.12.0.20240511",
"types-markdown==3.6.0.20240316",
"types-requests==2.32.0.20240622",
"types-tqdm==4.66.0.20240417",
]
[tool.pytest.ini_options]
pythonpath = ["."]
markers = [
"unit: marks tests as unit tests (fast, isolated)",
"integration: marks tests as integration tests (slower, may require external resources)",
]
asyncio_mode = "auto"
[[tool.mypy.overrides]]
module = "nest_asyncio"
ignore_missing_imports = true
[tool.mypy]
exclude = [
"^tests/",
]
python_version = "3.13"
disallow_untyped_defs = true