-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpyproject.toml
62 lines (55 loc) · 1.79 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
[tool.poetry]
name = "tafrigh"
version = "1.7.5"
description = "تفريغ النصوص وإنشاء ملفات SRT و VTT باستخدام نماذج Whisper وتقنية wit.ai."
authors = ["EasyBooks <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "tafrigh"}]
keywords = ["tafrigh", "speech-to-text", "wit.ai", "whisper"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
homepage = "https://tafrigh.ieasybooks.com"
repository = "https://github.com/ieasybooks/tafrigh"
[tool.poetry.dependencies]
python = ">=3.10"
tqdm = ">=4.67.1"
yt-dlp = {version = "^2025.1.15", extras = ["default"]}
auditok = ">=0.3.0"
pydub = ">=0.25.1"
requests = ">=2.32.0"
faster-whisper = ">=1.1.0"
stable-ts = ">=2.17.5"
openai-whisper = ">=20240930"
numba = ">=0.60.0" # This is required to be able to install llvmlite.
[tool.poetry.extras]
wit = ["auditok", "pydub", "requests"]
whisper = ["faster-whisper", "openai-whisper", "stable-ts"]
all = ["wit", "whisper"]
[tool.poetry.scripts]
tafrigh = "tafrigh.cli:main"
[tool.poetry.group.dev.dependencies]
pre-commit = "^4.0.1"
[tool.autopep8]
max-line-length = 120
indent-size = 2
ignore = ["E121"]
[tool.isort]
line_length = 120
src_paths = ["tafrigh"]
lines_between_types = 1
lines_after_imports = 2
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"