richard-su commited on
Commit
f917e19
·
verified ·
1 Parent(s): b5df735

Upload pyproject.toml with huggingface_hub

Browse files
Files changed (1) hide show
  1. pyproject.toml +37 -0
pyproject.toml ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [project]
2
+ name = "podcastmcpgradio"
3
+ version = "0.1.0"
4
+ description = "FastMCP MCP Server with Modal deployment"
5
+ readme = "README.md"
6
+ requires-python = ">=3.10"
7
+ dependencies = [
8
+ "fastapi",
9
+ "fastmcp>=2.7.0",
10
+ "mcp[cli]",
11
+ "modal>=1.0.3",
12
+ "uvicorn>=0.24.0",
13
+ "requests>=2.31.0",
14
+ "python-multipart>=0.0.6",
15
+ "aiofiles>=23.2.1",
16
+ "gradio>=5.31.0",
17
+ "pydantic>=2.0.0",
18
+ "python-dotenv>=1.0.0",
19
+ "starlette>=0.27.0",
20
+ "httpx>=0.25.0",
21
+ "bs4>=0.0.2",
22
+ "selenium>=4.33.0",
23
+ "ffmpeg-python>=0.2.0",
24
+ "torch>=2.7.1",
25
+ "openai-whisper>=20240930",
26
+ "pyannote.audio>=3.1.0",
27
+ "speechbrain>=0.5.16",
28
+ "soundfile>=0.12.1",
29
+ "numpy>=1.24.0",
30
+
31
+ ]
32
+
33
+ [tool.uv]
34
+ dev-dependencies = [
35
+ "pytest>=7.0.0",
36
+ "pytest-asyncio>=0.21.0",
37
+ ]