-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (47 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
51 lines (47 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "backend"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"fastapi[standard]>=0.115.0",
"fastmcp>=2.14.1",
"httpx[http2]>=0.27.2",
"aiosqlite>=0.20.0",
"mcp>=1.25.0",
"pydantic-settings>=2.4.0",
"psutil>=7.1.0",
"pytest>=8.4.2",
"pytest-asyncio>=0.25.2",
"rich>=13.0.0",
"sse-starlette>=2.1.0",
"uvicorn>=0.30.0",
"websockets>=11.0",
"python-dateutil>=2.8.2",
"google-api-python-client>=2.0.0",
"google-auth>=2.0.0",
"google-auth-oauthlib>=1.0.0",
"google-auth-httplib2>=0.1.0",
"google-cloud-storage>=2.17.0",
"python-dotenv>=1.0.1",
"monarchmoney>=0.1.12",
"gql<3.5.0",
"spotipy>=2.25.1",
"deepgram-sdk>=5.3.2",
"openai>=2.14.0",
"azure-cognitiveservices-speech>=1.42.0",
]
[project.scripts]
backend = "backend.main:main"
shell-chat = "frontend_cli.shell_chat:main"
mcp-profile = "scripts.mcp_profile:main"
[tool.setuptools]
packages = ["backend", "frontend_cli", "scripts"]
[tool.setuptools.package-dir]
"" = "src"
frontend_cli = "frontend-cli"
scripts = "scripts"