ViniciusKhan commited on
Commit
b2da116
·
1 Parent(s): ae4762b

Add application file

Browse files
Files changed (1) hide show
  1. requirements.txt +15 -10
requirements.txt CHANGED
@@ -1,10 +1,15 @@
1
- fastapi
2
- uvicorn
3
- python-dotenv
4
- requests
5
- sqlalchemy
6
- libsql-client
7
- pydantic
8
- numpy
9
- scikit-learn
10
- google-generativeai
 
 
 
 
 
 
1
+ # ============================
2
+ # LifeOps Backend (FastAPI + Turso/libSQL)
3
+ # ============================
4
+
5
+ fastapi>=0.110.0
6
+ uvicorn[standard]>=0.27.0
7
+
8
+ # Conector oficial libSQL/Turso (embedded replica + sync)
9
+ libsql>=0.1.0
10
+
11
+ # FastAPI já depende de pydantic, mas manter explícito ajuda em builds/reprodutibilidade
12
+ pydantic>=2.6.0
13
+
14
+ # Ler variáveis do .env (TURSO_DATABASE_URL, TURSO_AUTH_TOKEN, DB_FILE)
15
+ python-dotenv>=1.0.1