-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (34 loc) · 769 Bytes
/
pyproject.toml
File metadata and controls
36 lines (34 loc) · 769 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
[project]
name = "moneyprinter"
version = "1.0.0"
description = "Automate the creation of YouTube Shorts by providing a video topic."
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"requests==2.31.0",
"ollama==0.5.1",
"moviepy==2.2.1",
"termcolor==2.4.0",
"flask==3.0.0",
"curl-cffi",
"flask-cors==4.0.0",
"playsound==1.2.2",
"pillow==9.5.0",
"python-dotenv==1.0.0",
"srt-equalizer==0.1.8",
"platformdirs==4.1.0",
"undetected-chromedriver",
"assemblyai",
"brotli",
"google-api-python-client",
"oauth2client",
"sqlalchemy==2.0.36",
"psycopg[binary]==3.2.3",
]
[dependency-groups]
dev = [
"pytest==8.4.1",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"