shaheerawan3 commited on
Commit
3f8a80a
·
verified ·
1 Parent(s): 0b8ef98

Create requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +30 -0
requirements.txt ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Core dependencies
2
+ streamlit>=1.28.0
3
+ torch>=2.0.0
4
+ transformers>=4.35.0
5
+ fastapi>=0.104.0
6
+ uvicorn>=0.24.0
7
+
8
+ # Database dependencies
9
+ sqlalchemy>=2.0.0
10
+ psycopg2-binary>=2.9.9 # for PostgreSQL
11
+ pymongo>=4.6.0 # for MongoDB
12
+ motor>=3.3.0 # async MongoDB
13
+
14
+ # Utility dependencies
15
+ python-dotenv>=1.0.0
16
+ pydantic>=2.4.0
17
+ jinja2>=3.1.2
18
+ python-multipart>=0.0.6
19
+ aiofiles>=23.2.1
20
+
21
+ # Security dependencies
22
+ python-jose>=3.3.0
23
+ passlib>=1.7.4
24
+ bcrypt>=4.0.1
25
+
26
+ # Development dependencies
27
+ pytest>=7.4.0
28
+ black>=23.9.1
29
+ isort>=5.12.0
30
+ flake8>=6.1.0