-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (43 loc) · 1.28 KB
/
Copy pathpyproject.toml
File metadata and controls
48 lines (43 loc) · 1.28 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
[project]
name = "forzahelper"
version = "0.1.0"
description = "Add your description here"
authors = [
{ name = "Sandeep Kumar", email = "sandeep.workmail24@gmail.com" }
]
requires-python = ">=3.13"
dependencies = [
"fastapi>=0.141.1",
"langchain>=1.4.0",
"langchain-anthropic>=1.7.2",
"psycopg[binary,pool]>=3.3.5",
"pydantic>=2.13.5",
"pydantic-settings>=2.15.0",
"python-dotenv>=1.2.3",
"uvicorn[standard]>=0.52.4",
]
[project.scripts]
forzahelper = "forzahelper:main"
[build-system]
requires = ["uv_build>=0.12.5,<0.13.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"httpx>=0.28.1",
"opentelemetry-instrumentation-fastapi>=0.65b0",
"opentelemetry-instrumentation-psycopg>=0.65b0",
"opentelemetry-sdk>=1.44.0",
"pytest>=9.1.1",
"pytest-asyncio>=1.4.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
addopts = "-q"
[tool.vercel.fastapi.static]
# The frontend is mounted with StaticFiles. Vercel normally promotes mounted
# files to the CDN at build time, but it disables that whenever the app has
# top-level middleware -- and CORSMiddleware is top-level here. Static assets
# need no CORS headers, so promotion is forced back on; without this, every
# asset request would invoke the function.
cdn = true