-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
35 lines (31 loc) · 1.06 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "ChapSnap"
version = "1.2.0"
description = "Resync Chapters by snapping them to Scene Changes."
authors = ["rlaphoenix <rlaphoenix@pm.me>"]
readme = "README.md"
repository = "https://github.com/rlaphoenix/ChapSnap"
keywords = ["python", "chapters", "video", "analysis", "scene-detection"]
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/ChapSnap/issues"
"Forums" = "https://github.com/rlaphoenix/ChapSnap/discussions"
"Changelog" = "https://github.com/rlaphoenix/ChapSnap/blob/master/CHANGELOG.md"
[tool.poetry.dependencies]
python = ">=3.7,<3.12"
click = "^8.1.3"
rich = "^13.3.4"
pymediainfo = "^6.0.1"
[tool.poetry.scripts]
chapsnap = "chapsnap.main:main"