-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
65 lines (61 loc) · 1.59 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
from setuptools import setup, find_namespace_packages
with open("README.md", "r") as fh:
long_description = fh.read()
with open("VERSION", "r") as fh:
version = fh.read().strip()
setup(
name='cltl.asr',
version=version,
package_dir={'': 'src'},
packages=find_namespace_packages(include=['cltl.*', 'cltl_service.*'], where='src'),
data_files=[('VERSION', ['VERSION'])],
url="https://github.com/leolani/cltl-asr",
license='MIT License',
author='CLTL',
author_email='[email protected]',
description='ASR for Leolani',
long_description=long_description,
long_description_content_type="text/markdown",
python_requires='>=3.9',
install_requires=['numpy'],
extras_require={
"impl": [
"cffi",
"importlib_resources",
"jiwer",
"sounddevice",
"soundfile",
"torch",
"transformers",
"speechbrain",
"cltl.combot"
],
"google": [
"sounddevice",
"soundfile",
"google-cloud-speech"
],
"whisper": [
"sounddevice",
"soundfile",
"openai-whisper"
],
"whispercpp": [
"sounddevice",
"soundfile",
],
"whisperapi": [
"sounddevice",
"soundfile",
"openai",
],
"service": [
"cltl.backend[impl]",
"cltl.emissor-data[client]",
"cltl.combot",
"cltl.vad",
"emissor",
"requests",
]
},
)