Spaces:
Sleeping
Sleeping
samar m commited on
Commit ·
ad3f03f
1
Parent(s): b11d7fc
chore: init uv project with Python 3.11 and backend deps
Browse files- .python-version +1 -0
- pyproject.toml +19 -0
- uv.lock +0 -0
.python-version
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
3.11
|
pyproject.toml
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[project]
|
| 2 |
+
name = "ai-interviewmentor"
|
| 3 |
+
version = "0.1.0"
|
| 4 |
+
description = "Add your description here"
|
| 5 |
+
readme = "README.md"
|
| 6 |
+
requires-python = ">=3.11"
|
| 7 |
+
dependencies = [
|
| 8 |
+
"asyncpg==0.29.0",
|
| 9 |
+
"bcrypt==4.1.3",
|
| 10 |
+
"fastapi==0.115.0",
|
| 11 |
+
"httpx==0.27.2",
|
| 12 |
+
"langgraph==0.2.50",
|
| 13 |
+
"langgraph-checkpoint-postgres==2.0.8",
|
| 14 |
+
"pydantic==2.8.2",
|
| 15 |
+
"python-dotenv==1.0.1",
|
| 16 |
+
"python-jose[cryptography]==3.3.0",
|
| 17 |
+
"python-multipart==0.0.9",
|
| 18 |
+
"uvicorn==0.30.6",
|
| 19 |
+
]
|
uv.lock
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|