Create requirements.txt
Browse files- requirements.txt +7 -0
requirements.txt
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
fastapi==0.110.2 # web framework
|
2 |
+
uvicorn[standard]==0.29.0 # ASGI server + uvloop/httptools
|
3 |
+
aiohttp==3.9.5 # outbound HTTP client
|
4 |
+
tenacity==8.2.3 # retry logic
|
5 |
+
python-dotenv==1.0.1 # optional .env loader
|
6 |
+
# For Python < 3.10, keep newer typing helpers:
|
7 |
+
typing_extensions>=4.9.0; python_version < "3.10"
|