-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml.tmp
More file actions
46 lines (40 loc) · 977 Bytes
/
Copy pathpyproject.toml.tmp
File metadata and controls
46 lines (40 loc) · 977 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
44
45
46
[build-system]
requires = ["hatchling>=1.25.0"]
build-backend = "hatchling.build"
[project]
name = "thunder-subtitle-cli"
version = "0.1.0"
description = "è¿…é›·å—幕(Xunlei/Thunder)æœç´¢ä¸Žä¸‹è½½å·¥å…·ï¼ˆå« TUI èœå•)ã€?
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"httpx>=0.27.0",
"typer>=0.12.3",
"rich>=13.7.1",
"questionary>=2.0.1",
"pysmb>=1.2.9",
"fastapi>=0.104.0",
"uvicorn>=0.23.2",
"jinja2>=3.1.2",
"python-multipart>=0.0.6",
"openai>=1.0.0",
"watchdog>=3.0.0",
"tzdata>=2025.3",
]
[project.scripts]
thunder-subtitle = "thunder_subtitle_cli.cli:app"
[dependency-groups]
dev = [
"pytest>=8.2.0",
"respx>=0.21.1",
"pyinstaller>=6.10.0",
"pip-tools>=7.5.3",
]
[tool.hatch.build.targets.wheel]
packages = ["src/thunder_subtitle_cli"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q --capture=no"
markers = [
"integration: networked tests (disabled by default; set RUN_SMB_TESTS=1)",
]