forked from Anionex/banana-slides
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (40 loc) · 962 Bytes
/
pyproject.toml
File metadata and controls
43 lines (40 loc) · 962 Bytes
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
[project]
name = "banana-slides"
version = "0.1.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",
"pydantic>=2.9.0",
"pillow>=12.0.0",
"python-pptx>=1.0.0",
"python-dotenv>=1.0.1",
"reportlab>=4.1.0",
"werkzeug>=3.0.1",
"markitdown[all]",
"tenacity>=9.0.0",
"alembic>=1.13.0",
"flask-migrate>=4.0.0",
]
[project.optional-dependencies]
test = [
"pytest>=7.4.0",
"pytest-mock>=3.12.0",
"pytest-cov>=4.1.0",
"pytest-asyncio>=0.21.0",
"httpx>=0.25.0",
"flake8>=6.1.0",
"black>=23.0.0",
]
[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"