Spaces:
Sleeping
Sleeping
Meet Patel
commited on
Commit
·
05e9d9c
1
Parent(s):
42bdc55
Adding deployment files
Browse files- mcp_server/requirements.txt +23 -0
- mcp_server/vercel.json +15 -0
mcp_server/requirements.txt
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
fastapi>=0.68.0
|
2 |
+
uvicorn>=0.15.0
|
3 |
+
aiohttp>=3.8.0
|
4 |
+
python-multipart>=0.0.5
|
5 |
+
pydantic>=1.8.0
|
6 |
+
gradio>=4.19.0
|
7 |
+
numpy>=1.24.0
|
8 |
+
pillow>=10.0.0
|
9 |
+
python-jose[cryptography]>=3.3.0
|
10 |
+
passlib[bcrypt]>=1.7.4
|
11 |
+
python-dotenv>=0.19.0
|
12 |
+
httpx>=0.24.0
|
13 |
+
pytest>=7.0.0
|
14 |
+
pytest-asyncio>=0.18.0
|
15 |
+
pytest-cov>=3.0.0
|
16 |
+
black>=22.0.0
|
17 |
+
isort>=5.10.0
|
18 |
+
mypy>=0.910
|
19 |
+
ruff>=0.0.262
|
20 |
+
networkx>=3.0
|
21 |
+
matplotlib>=3.5.0
|
22 |
+
PyMuPDF>=1.19.0
|
23 |
+
pytesseract>=0.3.8
|
mcp_server/vercel.json
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"version": 2,
|
3 |
+
"builds": [
|
4 |
+
{
|
5 |
+
"src": "./server.py",
|
6 |
+
"use": "@vercel/python"
|
7 |
+
}
|
8 |
+
],
|
9 |
+
"routes": [
|
10 |
+
{
|
11 |
+
"src": "/(.*)",
|
12 |
+
"dest": "/server.py"
|
13 |
+
}
|
14 |
+
]
|
15 |
+
}
|