-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
50 lines (46 loc) · 1.64 KB
/
setup.py
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
#!/usr/bin/env python3.8
from __future__ import unicode_literals
import sys
import warnings
warnings.filterwarnings("ignore", category=DeprecationWarning, module='setuptools')
warnings.filterwarnings("ignore", category=UserWarning, module='setuptools')
warnings.filterwarnings("ignore", message=".*is deprecated*")
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from autosrt import VERSION
long_description = (
'autosrt is a utility for automatic speech recognition and subtitle generation.'
'It takes a video or an audio file as input, performs voice activity detection '
'to find speech regions, makes parallel requests to Google Web Speech API to '
'generate transcriptions for those regions, (optionally) translates them to a '
'different language, and finally saves the resulting subtitles file to disk. '
'It supports a variety of input and output languages and can currently produce '
'subtitles in SRT, VTT, JSON, and RAW format.'
)
install_requires=[
"requests>=2.3.0",
"httpx>=0.24.0",
"urllib3 >=1.26.0,<3.0",
"pysrt>=1.0.1",
"six>=1.11.0",
"progressbar2>=3.34.3",
]
setup(
name="autosrt",
version=VERSION,
description="a utility for automatic speech recognition and subtitle generation",
long_description = long_description,
author="Bot Bahlul",
author_email="bot.bahlul@gmail.com",
url="https://github.com/botbahlul/autosrt",
packages=["autosrt"],
entry_points={
"console_scripts": [
"autosrt = autosrt:main",
],
},
install_requires=install_requires,
license=open("LICENSE").read()
)