-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
92 lines (71 loc) · 3 KB
/
Copy pathsetup.py
File metadata and controls
92 lines (71 loc) · 3 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
from pathlib import Path
import setuptools
with open('requires.txt', encoding='utf-8') as f:
requires = f.read().strip().splitlines()
with open('CHANGELOG.md', encoding='utf-8') as f:
changelog = f.read()
with open('README.md', encoding='utf-8') as f:
readme = f.read().strip()
readme += f'\n\n---\n\n# CHANGELOG\n\n{changelog}'
extras_require = {}
for require in Path('extra_requires').glob('*_*.txt'):
with open(require, encoding='UTF-8') as f:
extras_require[require.name.split('.', 1)[0].rsplit('_', 1)[-1].casefold()] = f.read().strip().splitlines()
extras_require['all'] = sum(extras_require.values(), requires)
setuptools.setup(
name="FastDub",
version="3.8.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",
long_description=readme,
long_description_content_type="text/markdown",
author="Nikita (NIKDISSV)",
author_email='nikdissv@proton.me',
packages=setuptools.find_packages(),
install_requires=requires,
extras_require=extras_require,
project_urls={
'Download Voices': 'https://rhvoice.su/voices',
'GitHub': 'https://github.com/NIKDISSV-Forever/FastDub',
'YouTube': 'https://www.youtube.com/channel/UC8JV3zPSVm9EKSWD1XdkQvw',
},
license='MIT',
python_requires='>=3.9',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Other Audience',
'Intended Audience :: Science/Research',
'Intended Audience :: Telecommunications Industry',
'License :: OSI Approved',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Natural Language :: English',
'Natural Language :: Russian',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Multimedia',
'Topic :: Multimedia :: Sound/Audio',
'Topic :: Multimedia :: Sound/Audio :: Analysis',
'Topic :: Multimedia :: Sound/Audio :: Conversion',
'Topic :: Multimedia :: Sound/Audio :: Speech',
'Topic :: Multimedia :: Video',
'Topic :: Multimedia :: Video :: Conversion',
'Topic :: Software Development :: Internationalization',
'Topic :: Utilities',
'Typing :: Typed',
],
keywords=['dubbing', 'voicing',
'fastdub', 'JustDub', 'SpeedDub',
'offline', 'free', 'easiest',
'subtitles', 'videos', 'veed', 'fast'],
)