forked from apm1467/videocr
-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (42 loc) · 1.29 KB
/
pyproject.toml
File metadata and controls
44 lines (42 loc) · 1.29 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "videocr"
version = "0.1.7"
description = "Extract hardcoded subtitles from videos using machine learning"
authors = [
{ name = "Yi Ge", email = "me@yige.ch" }
]
readme = "README.md"
requires-python = ">=3.8, <3.13"
keywords = [
"ocr",
"textdetection",
"textrecognition",
"paddleocr",
]
license = { text = "MIT" }
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"setuptools>=61.0", # Explicitly required by Paddle; avoids issues in Python 3.12+ where setuptools isn't preinstalled
"thefuzz>=0.19",
"python-Levenshtein>=0.12",
"paddleocr>=2.6, !=3.0.0, !=3.0.1, !=3.0.2",
"pyyaml>=5.4",
"packaging>=20.0",
]
[project.urls]
Homepage = "https://github.com/devmaxxing/videocr-PaddleOCR"
Repository = "https://github.com/devmaxxing/videocr-PaddleOCR.git"
Issues = "https://github.com/devmaxxing/videocr-PaddleOCR/issues"