-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
29 lines (25 loc) · 882 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
[tool.poetry]
name = "video-diet"
version = "0.1.10"
description = ""
authors = ["hian <[email protected]>"]
readme = "README.md"
license = "LGPL-3.0"
repository = "https://github.com/hiancdtrsnm/video-diet"
[tool.poetry.scripts]
video-diet = "video_diet.main:app"
[tool.poetry.dependencies]
python = ">=3.6,<4"
typer = {extras = ["all"], version = "^0.3.2"}
ffmpeg-python = "^0.2.0"
filetype = "^1.0.7"
ffprobe-python = "^1.0.3"
enlighten = "^1.6.2"
wexpect = {version ="^4.0.0", markers = "sys_platform == 'win32' or platform_system == 'Windows'"}
pexpect = {version ="^4.8.0", markers = "sys_platform == 'linux' or platform_system == 'Linux'"}
ansicon = {version ="^1.89.0", markers = "sys_platform == 'win32' or platform_system == 'Windows'"}
[tool.poetry.dev-dependencies]
pytest = "^6.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"