Skip to content

Commit

Permalink
added websocket as dependency to setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
vadimdddd committed Jul 19, 2022
1 parent e1a2552 commit 3d7112c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def get_tag(self):
cmdclass=cmdclass,
python_requires='>=3',
zip_safe=False, # Since we load so file from the filesystem, we can not run from zip file
setup_requires=['cffi>=1.0', 'requests', 'tqdm', 'srt'],
install_requires=['cffi>=1.0', 'requests', 'tqdm', 'srt'],
setup_requires=['cffi>=1.0', 'requests', 'tqdm', 'srt', 'websockets'],
install_requires=['cffi>=1.0', 'requests', 'tqdm', 'srt', 'websockets'],
cffi_modules=['vosk_builder.py:ffibuilder'],
)

0 comments on commit 3d7112c

Please sign in to comment.