-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
93 lines (88 loc) · 2.44 KB
/
Copy pathpyproject.toml
File metadata and controls
93 lines (88 loc) · 2.44 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
[project]
name = "fastdub"
version = "3.9.0"
description = "A Python CLI package for voice over subtitles, with the ability to embed in video, audio ducking, and dynamic voice changer for a single track; auto translating; download and upload to YouTube supports"
authors = [
{ name = "Nikita Denissov", email = "n.denissov@proton.me" }
]
license = "MIT"
readme = "README.md"
requires-python = ">=3.9"
keywords = [
"dubbing",
"voicing",
"fastdub",
"JustDub",
"SpeedDub",
"offline",
"free",
"easiest",
"subtitles",
"videos",
"veed",
"fast",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Natural Language :: English",
"Natural Language :: Russian",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Multimedia :: Sound/Audio :: Speech",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Typing :: Typed",
]
dependencies = [
"chardet>=5.2.0",
"pyttsx3>=2.90",
"pydub>=0.25.1",
"rich>=13.9.4",
"tqdm>=4.67.1",
]
[project.optional-dependencies]
tr = ["translators>=5.9.3"]
yt = [
"download-youtube-subtitle>=1.0.4",
"youtube-search-python>=1.6.6",
"youtube-dl>=2021.12.17",
"pafy>=0.5.5",
]
ytu = [
"google-api-python-client>=2.160.0",
"oauth2client>=4.1.3",
]
tortoise = [
"tortoise-tts>=0.1.0",
]
all = [
"translators>=5.9.3",
"download-youtube-subtitle>=1.0.4",
"youtube-search-python>=1.6.6",
"youtube-dl>=2021.12.17",
"pafy>=0.5.5",
"google-api-python-client>=2.160.0",
"oauth2client>=4.1.3",
"tortoise-tts>=0.1.0",
]
[project.scripts]
fastdub = "fastdub.__main__:main"
[project.urls]
Homepage = "https://github.com/ndenissov/FastDub"
Repository = "https://github.com/ndenissov/FastDub"
"Bug Tracker" = "https://github.com/ndenissov/FastDub/issues"
"Download Voices" = "https://rhvoice.su/voices"
[tool.poetry]
packages = [{ include = "fastdub" }]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"