-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (33 loc) · 1.14 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "SubReDo"
version = "1.1.0"
description = "Apply Cuts from VideoReDo Project Files to Subtitles."
authors = ["rlaphoenix <[email protected]>"]
readme = "README.md"
repository = "https://github.com/rlaphoenix/SubReDo"
keywords = ["python", "subtitles", "cut", "editor"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Multimedia",
"Topic :: Multimedia :: Video",
"Topic :: Utilities"
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/rlaphoenix/SubReDo/issues"
"Forums" = "https://github.com/rlaphoenix/SubReDo/discussions"
"Changelog" = "https://github.com/rlaphoenix/SubReDo/blob/master/CHANGELOG.md"
[tool.poetry.dependencies]
python = ">=3.7,<3.12"
click = "^8.1.3"
rich = "^13.3.4"
pymediainfo = "^6.0.1"
pywin32 = { version = "^306", platform = "win32" }
comtypes = { version = "^1.2.0", platform = "win32" }
[tool.poetry.scripts]
subredo = "subredo.main:main"