-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpyproject.toml
More file actions
114 lines (104 loc) · 2.43 KB
/
pyproject.toml
File metadata and controls
114 lines (104 loc) · 2.43 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "assy"
description = "Automatic subtitle synchronization tool."
authors = [
{ name="Deniz Şafak", email="denizsafak98@gmail.com" }
]
readme = "README.md"
license = "GPL-3.0-or-later"
requires-python = ">=3.10,<3.14"
keywords = [
"subtitle",
"synchronization",
"video",
"ffsubsync",
"autosubsync",
"alass",
"subtitle-sync",
"media",
"timing",
"alignment"
]
dependencies = [
"PyQt6",
"rich",
"faust-cchardet; python_version < '3.13'",
"charset-normalizer",
"chardet",
"requests",
"psutil",
"platformdirs",
"ffsubsync",
"autosubsync",
"static-ffmpeg",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: End Users/Desktop",
"Topic :: Multimedia :: Video",
"Topic :: Text Processing",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Environment :: X11 Applications :: Qt",
]
dynamic = ["version"]
[project.optional-dependencies]
dev = [
"pyinstaller",
"build",
]
torch = [
"torch; python_version <= '3.14'",
"torchaudio; python_version <= '3.14'",
]
[project.urls]
Homepage = "https://github.com/denizsafak/AutoSubSync"
Documentation = "https://github.com/denizsafak/AutoSubSync"
Repository = "https://github.com/denizsafak/AutoSubSync"
Issues = "https://github.com/denizsafak/AutoSubSync/issues"
[project.gui-scripts]
assy = "main.main:main"
[project.scripts]
assy-cli = "main.main:main"
[tool.hatch.build.targets.sdist]
exclude = [
"/.github",
"/build",
"/dist",
"/venv",
"/build_tools",
"/test_subtitles",
"/docker",
"/images",
"/.old",
"/.vscode",
"Dockerfile",
"docker-compose.yml",
"DOCKER.md",
"run-docker.bat",
"run-docker.sh",
"build.py",
"build_pypi.py",
"build.spec",
"PROMPTS.md",
"main/resources/ffmpeg_download.py",
"*.AppImage",
"*.zip",
"*.tar.gz",
]
[tool.hatch.build.targets.wheel]
packages = ["main"]
exclude = [
"main/resources/ffmpeg-bin",
"main/resources/ffmpeg_download.py"
]
[tool.hatch.version]
path = "main/VERSION"
pattern = "^(?P<version>.+)$"