-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
67 lines (63 loc) · 1.49 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[tool.poetry]
name = "pgsrip"
version = "0.1.11"
description = "Rip your PGS subtitles"
authors = [
"Rato",
]
license = "MIT"
readme = "README.md"
repository = "https://github.com/ratoaq2/pgsrip"
keywords = [
"video",
"mkv",
"subtitles",
"rip",
"srt",
"pgs",
"sup",
"sub",
"metadata",
"movie",
"episode",
"tv",
"shows",
"series",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Multimedia :: Video",
]
[tool.poetry.scripts]
pgsrip = "pgsrip.cli:pgsrip"
[tool.poetry.dependencies]
python = "^3.9.0"
babelfish = "^0.6.1"
cleanit = "^0.4.8"
click = "^8.1.3"
pysrt = "^1.1.2"
pytesseract = "^0.3.10"
numpy = "^2.0.0"
opencv-python = "^4.7.0"
trakit = "^0.2.2"
setuptools = "^70.1.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.2.2"
pytest-cov = "^5.0.0"
flake8 = "^7.1.0"
flake8-import-order = "^0.18.2"
mypy = "^1.10.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"