-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (37 loc) · 980 Bytes
/
pyproject.toml
File metadata and controls
41 lines (37 loc) · 980 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 = "agent-oracle"
version = "0.1.0"
description = "Oracle - Intelligent conversational AI agent with Gemini integration"
readme = "README.md"
requires-python = ">=3.14"
dependencies = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.30.0",
"google-genai>=1.33.0",
"python-dotenv>=1.0.0",
"pydantic>=2.0.0",
"psutil>=6.0.0",
"sqlmodel>=0.0.16",
# LangChain dependencies
"langchain>=0.1.0",
"langchain-google-genai>=1.0.0",
"langchain-core>=0.1.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.24.0",
"pytest-mock>=3.14.0",
"httpx>=0.27.0", # For FastAPI TestClient
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["backend"]
[tool.pytest.ini_options]
testpaths = ["backend/tests"]
python_files = ["test_*.py", "*_test.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
asyncio_mode = "auto"