-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (43 loc) · 1.1 KB
/
Copy pathpyproject.toml
File metadata and controls
47 lines (43 loc) · 1.1 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
[project]
name = "unofficial-api"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"beautifulsoup4>=4.9.0",
"curl-cffi>=0.15.0",
"deepseek-api",
"grok-api",
"fastapi[standard]>=0.138.0",
"loguru>=0.7.3",
"lxml-html-clean>=0.1.1",
"notebooklm-py",
"orjson>=3.11.7",
"python-multipart>=0.0.21",
"requests>=2.34.2",
"requests-html>=0.10.0",
"wasmtime>=45.0.0",
]
[tool.uv.sources]
deepseek-api = { path = "deepseek-api", editable = true }
grok-api = { path = "grok-api", editable = true }
notebooklm-py = { path = "notebooklm-py", editable = true }
# How SDKs are included:
# sys.path in server.py: DeepSeek (deepseek-api/), Gemini (Gemini-API/src/),
# Meta AI (metaai-api/src/), Grok (grok-api/)
# pip local path: NotebookLM (notebooklm-py)
[dependency-groups]
dev = [
"pytest>=8.0",
"httpx>=0.27",
"pytest-asyncio>=0.24",
]
[tool.pyright]
extraPaths = [
"deepseek-api",
"grok-api",
"Gemini-API/src",
"metaai-api/src",
"notebooklm-py",
]