ChiragPatankar commited on
Commit
52fbf9a
·
verified ·
1 Parent(s): 0e6edd5

Create requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +27 -0
requirements.txt ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Gemini MCP Server - Requirements
2
+ # Core FastAPI dependencies
3
+ fastapi==0.104.1
4
+ uvicorn[standard]==0.24.0
5
+ pydantic==2.5.0
6
+
7
+ # Google Gemini AI
8
+ google-generativeai==0.3.2
9
+
10
+ # Database dependencies
11
+ psycopg2-binary==2.9.9
12
+ sqlalchemy==2.0.23
13
+
14
+ # HTTP clients
15
+ aiohttp==3.9.1
16
+ httpx==0.25.2
17
+ requests==2.31.0
18
+
19
+ # Environment and configuration
20
+ python-dotenv==1.0.0
21
+
22
+ # CORS and middleware
23
+ python-multipart==0.0.6
24
+
25
+ # Authentication & Security
26
+ python-jose[cryptography]==3.3.0
27
+ passlib[bcrypt]==1.7.4