-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (66 loc) · 1.61 KB
/
Copy pathpyproject.toml
File metadata and controls
73 lines (66 loc) · 1.61 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "banana-slides"
version = "0.3.0"
description = "Banana Slides – AI native PPT generator"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"flask>=3.0.0",
"flask-cors>=4.0.0",
"flask-sqlalchemy>=3.1.1",
"google-genai>=1.52.0",
"openai>=1.0.0",
"anthropic>=0.30.0",
"httpx>=0.25.0",
"typer>=0.9.0",
"rich>=13.0.0",
"pydantic>=2.9.0",
"pillow>=12.0.0",
"python-pptx>=1.0.0",
"python-dotenv>=1.0.1",
"tomli>=2.0.1; python_version < '3.11'",
"reportlab>=4.1.0",
"werkzeug>=3.0.1",
"markitdown[all]",
"tenacity>=9.0.0",
"alembic>=1.13.0",
"flask-migrate>=4.0.0",
"img2pdf>=0.5.1",
"lazyllm[online-advanced]>=0.7.3",
"volcengine-python-sdk[ark]>=5.0.9",
"PyPDF2>=3.0.0",
"PyMuPDF>=1.24.0",
"edge-tts>=6.1.0",
"socksio>=1.0.0",
"opencv-python-headless>=4.13.0.92",
"elevenlabs>=2.45.0",
"onnxruntime>=1.18.0",
"gradio-client>=1.13.3",
]
[project.optional-dependencies]
test = [
"pytest>=7.4.0",
"pytest-mock>=3.12.0",
"pytest-cov>=4.1.0",
"pytest-asyncio>=0.21.0",
"flake8>=6.1.0",
"black>=23.0.0",
]
[project.scripts]
banana-cli = "cli.banana_cli.__main__:main"
[tool.setuptools.packages.find]
include = ["cli*"]
[tool.uv]
index-url = "https://pypi.tuna.tsinghua.edu.cn/simple"
[tool.pytest.ini_options]
testpaths = ["backend/tests"]
python_files = ["test_*.py"]
python_functions = ["test_*"]
addopts = "-v --tb=short"
[dependency-groups]
dev = [
"pytest>=9.0.2",
]