-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
52 lines (43 loc) · 1 KB
/
pyproject.toml
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
[tool.poetry]
name = "clipper"
version = "5.28.0"
description = "Quickly generate clipped webms."
authors = ["exwm <[email protected]>"]
license = "MIT"
readme = "readme.md"
[tool.poetry.scripts]
yt_clipper = 'clipper.yt_clipper:main'
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
yt-dlp = "2024.10.07"
coloredlogs = "^15.0.1"
notify-py = "^0.3.3"
verboselogs = "^1.7"
webvtt-py = "^0.4.6"
certifi = ">=2024.7.4"
rich = "^13.9.1"
rich-argparse = "^1.5.2"
[tool.poetry.group.dev.dependencies]
pyinstaller = "6.9.0"
bumpit = "^0.8.0"
ruff = "0.6.8"
pillow = "^10.4.0"
[tool.poetry.group.test.dependencies]
pytest = "^8.3.3"
pytest-cov = "^5.0.0"
syrupy = "^4.7.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 100
include = '\.pyi?$'
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
addopts = "-ra"
testpaths = "src/clipper/tests"
pythonpath = "src"
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
]