-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 898 Bytes
/
pyproject.toml
File metadata and controls
35 lines (31 loc) · 898 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
[tool.poetry]
name = "transcript-maker"
version = "0.1.0"
description = "Paste a YouTube URL, get a transcript."
authors = ["dmitry-kostin"]
license = "MIT"
repository = "https://github.com/dmitry-kostin/transcript-maker"
package-mode = false
[tool.poetry.dependencies]
python = "^3.11"
fastapi = "^0.115"
uvicorn = {extras = ["standard"], version = "^0.34"}
yt-dlp = ">=2025"
openai = "^1.60"
pydantic-settings = "^2.7"
sse-starlette = "^2.2"
pyyaml = "^6.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0"
pytest-asyncio = "^0.25"
httpx = "^0.28"
json-repair = "^0.58.0"
[tool.pytest.ini_options]
asyncio_mode = "auto"
markers = [
"integration: end-to-end tests using real YouTube download and OpenAI/Gemini APIs (deselected by default, run with -m integration)",
]
addopts = "-m 'not integration'"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"