-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
38 lines (36 loc) · 1.24 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
import os
from setuptools import setup
setup(
name='stt-watson',
version='1.0.3',
packages=['utils', 'config', 'recording', 'watson_client', 'watson_client.websocket', 'stt_watson'],
url='https://github.com/HomeHabbit/stt-watson',
license='MIT',
author='Arthur Halet',
author_email='[email protected]',
long_description=open(os.path.join(os.path.dirname(__file__), 'README.md')).read(),
description='Continuous speech to text using watson in python with websocket and record from microphone',
keywords='text-to-speech watson websocket',
classifiers=['Topic :: Multimedia :: Sound/Audio :: Analysis',
'Topic :: Multimedia :: Sound/Audio :: Capture/Recording',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: MIT License'],
platforms='ALL',
install_requires=[
'autobahn>=0.10.9',
'pyOpenSSL>=0.13.1',
'requests>=2.8.1',
'Twisted>=13.2.0',
'txaio>=2.0.4',
'pyaudio>=0.2.9',
'pyyaml>=3.08',
],
package_data={
'config': ['config.sample.yml']
},
entry_points={
'console_scripts': [
'stt-watson=stt_watson.__main__:main',
],
},
)