forked from podly-pure-podcasts/podly_pure_podcasts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
95 lines (86 loc) · 1.6 KB
/
Copy pathpyproject.toml
File metadata and controls
95 lines (86 loc) · 1.6 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[project]
name = "podly"
version = "0.0.1"
requires-python = ">=3.11, <3.14"
dependencies = [
"speechrecognition",
"openai",
"python-dotenv",
"jinja2",
"flask",
"pyrss2gen",
"feedparser",
"certifi",
"cd",
"pyyaml",
"prompt-toolkit",
"pypodcastparser",
"werkzeug",
"exceptiongroup",
"zeroconf",
"waitress",
"validators",
"beartype",
"openai-whisper",
"flask-sqlalchemy",
"flask-migrate",
"Flask-APScheduler",
"ffmpeg-python",
"litellm",
"bleach",
"types-bleach",
"groq",
"async_timeout",
"pytest-cov",
"flask-cors",
"bcrypt",
"httpx-aiohttp",
]
[dependency-groups]
dev = [
"black",
"mypy",
"types-pyyaml",
"types-requests",
"types-waitress",
"pylint",
"pytest",
"dill",
"isort",
"types-flask-migrate",
"pytest-mock",
"watchdog",
"requests",
"types-flask-cors",
]
[tool.pylint]
init-hook = 'import sys; sys.path.append("./src")'
disable = [
"logging-fstring-interpolation",
"missing-class-docstring",
"missing-function-docstring",
"missing-module-docstring",
"too-few-public-methods",
"too-many-arguments",
"too-many-locals",
"unspecified-encoding",
"line-too-long",
"too-many-return-statements"
]
[tool.uv]
package = false
[[tool.uv.index]]
name = "pypi"
url = "https://pypi.org/simple"
[tool.mypy]
warn_unused_ignores = true
strict = true
mypy_path = "src"
[tool.pytest.ini_options]
pythonpath = ["src"]
[tool.black]
line-length = 88
[tool.isort]
profile = "black"
line_length = 88
float_to_top = true