forked from fabricekwizera/deepspeech-rest-api
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
44 lines (43 loc) · 1.16 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
from setuptools import setup, find_packages
setup(
name='DeepSpeech REST API',
version='0.0.1',
description='A REST API to facilitate the usage of Mozilla DeepSpeech',
long_description='file: README.md',
author='Fabrice Kwizera',
author_email='[email protected]',
url='https://github.com/fabricekwizera/deepspeech-rest-api',
package=find_packages(),
zip_safe=False,
include_package_data=True,
platform='any',
install_requires=[
'alembic',
'aredis',
'deepspeech==0.9.3',
'environs',
'ffmpeg-python',
'halo',
'numpy',
'psycopg2',
'pyaudio',
'requests',
'sanic',
'sanic-cors',
'sanic-jwt',
'sanic-validation',
'scipy',
'sqlalchemy',
'webrtcvad',
'websocket-client',
'werkzeug'
],
classifiers=[
'Framework :: Sanic',
'Programming Language :: Python :: 3.8',
'Environment :: Application Programming Interface',
'Topic :: Software Development',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
]
)