-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (42 loc) · 1.08 KB
/
Copy pathpyproject.toml
File metadata and controls
47 lines (42 loc) · 1.08 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "usta"
version = "0.1.0"
authors = [
{ name="Sedat Ayma" },
]
description = "High-performance, PySide6-based instant translation HUD for Linux."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Topic :: Multimedia :: Video",
"Topic :: Utilities",
]
dependencies = [
"PySide6>=6.5.0",
"pytesseract>=0.3.10",
"easyocr>=1.7.0",
"rapidocr-onnxruntime>=1.2.0,<1.3.0",
"onnxruntime>=1.17.0",
"paddleocr>=3.6.0",
"deep-translator>=1.11.0",
"python-dotenv>=1.0.0",
"Pillow>=10.0.0",
"dbus-next>=0.2.3",
"Babel>=2.12.0",
]
[project.urls]
"Homepage" = "https://github.com/sedataym/usta"
"Bug Tracker" = "https://github.com/sedataym/usta/issues"
[project.scripts]
usta = "src.main:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["src*"]
[tool.setuptools.package-data]
"src.ui" = ["assets/*.png"]