forked from exwm/yt_clipper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (34 loc) · 818 Bytes
/
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
[tool.poetry]
name = "clipper"
version = "5.11.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.8,<3.9"
yt-dlp = "2022.10.4"
youtube-dl = "2021.12.17"
coloredlogs = "^15.0.1"
notify-py = "^0.3.3"
verboselogs = "^1.7"
webvtt-py = "^0.4.6"
certifi = ">=2021.10.8"
[tool.poetry.group.dev.dependencies]
pyinstaller = "5.0.1"
black = "^22.8.0"
isort = "^5.10.1"
pylint = "^2.12.2"
[tool.poetry.group.test.dependencies]
pytest = "^7.0.0"
pytest-cov = "^3.0.0"
[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"