forked from devmaxxing/videocr-PaddleOCR
-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (73 loc) · 1.9 KB
/
pyproject.toml
File metadata and controls
82 lines (73 loc) · 1.9 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[build-system]
requires = ["setuptools>=77.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "VideOCR"
dynamic = ["version"]
description = "Extract hardcoded subtitles from videos via a simple GUI using machine learning."
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
keywords = ["machine-learning", "ocr", "deep-learning", "subtitles", "hardsub"]
authors = [{name = "Tim Lodemann"}]
requires-python = ">=3.9"
classifiers = [
"Intended Audience :: Developers",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
]
dependencies = [
"av",
"cpuid",
"Fast-SSIM",
"opencc",
"Pillow",
"psutil",
"PySimpleGUI",
"thefuzz",
"wakepy",
"wordninja-enhanced",
"PyTaskbarProgress @ git+https://github.com/timminator/PyTaskbar.git ; sys_platform == 'win32'",
"winotify ; sys_platform == 'win32'",
"plyer ; sys_platform != 'win32'",
]
[dependency-groups]
dev = [
"mypy",
"pre-commit",
"ruff",
]
build = [
"nuitka",
"patchelf; sys_platform == 'linux'",
"requests",
]
all = [
{ include-group = "dev" },
{ include-group = "build" },
]
[project.urls]
Homepage = "https://github.com/timminator/VideOCR"
documentation = "https://github.com/timminator/VideOCR/blob/master/README.md"
Repository = "https://github.com/timminator/VideOCR.git"
Issues = "https://github.com/timminator/VideOCR/issues"
[tool.mypy]
strict = true
exclude = [
"VideOCR\\.build",
"CLI/videocr_cli\\.build"
]
[tool.setuptools]
packages = []
[tool.setuptools.dynamic]
version = { attr = "_version.__version__" }
[tool.ruff]
exclude = ["build", "venv", ".venv", "__pycache__"]
preview = true
target-version = "py39"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM", "W"]
ignore = ["E501", "SIM108", "SIM102", "SIM114"]
[tool.ruff.lint.isort]
known-first-party = ["videocr"]