-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (46 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
50 lines (46 loc) · 1.1 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
[project]
name = "proovy_ai"
version = "0.1.0"
description = "FastAPI + LangGraph starter chatbot service"
readme = "README.md"
authors = [{ name = "Proovy" }]
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.115.0",
"langgraph>=0.2.30",
"langchain>=0.2.17",
"langchain-openai>=0.1.23",
"pydantic>=2.7",
"pydantic-settings>=2.3",
"uvicorn[standard]>=0.30",
"python-dotenv>=1.2.1",
"langfuse>=3.11.2",
"langgraph-cli[inmem]>=0.4.11",
"langgraph-checkpoint-postgres>=2.0.0",
"psycopg[binary,pool]>=3.1.0",
"pdf2image>=1.17.0",
"pillow>=12.1.0",
"reportlab>=4.2.0",
"matplotlib>=3.8.0",
"e2b-code-interpreter>=1.0.4",
# RAG / pgvector 의존성
"openai>=1.0.0",
"pgvector>=0.2.0",
]
[project.optional-dependencies]
dev = [
"httpx>=0.27",
"pytest>=8.2",
"pytest-asyncio>=0.23",
"python-dotenv>=1.0",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[dependency-groups]
dev = [
"pre-commit>=4.5.1",
"ruff>=0.14.11",
]