fixed README, spruced up setup.py

This commit is contained in:
2019-02-12 20:46:12 -05:00
parent 355327afd7
commit 6ceb88c591
2 changed files with 8 additions and 6 deletions

View File

@@ -37,9 +37,9 @@ An AWS account (the only supported STT provider as of Feb 12, 2019), and a recor
- [Amazon Transcribe](https://aws.amazon.com/transcribe/)
### Planned
- [ Watson ](https://www.ibm.com/watson/services/speech-to-text/)
- [ Google Speech ](https://cloud.google.com/speech-to-text/)
- [ Kaldi ] (https://github.com/kaldi-asr/kaldi) [ and/or things built on it ](https://github.com/lowerquality/gentle)
- [ Speechmatics ](https://www.speechmatics.com/)
- [ Mozilla's new open-source STT thing ](https://github.com/mozilla/DeepSpeech)
- [Watson](https://www.ibm.com/watson/services/speech-to-text/)
- [Google Speech](https://cloud.google.com/speech-to-text/)
- [Kaldi](https://github.com/kaldi-asr/kaldi) [ and/or things built on it ](https://github.com/lowerquality/gentle)
- [Speechmatics](https://www.speechmatics.com/)
- [Mozilla's new open-source STT thing](https://github.com/mozilla/DeepSpeech)

View File

@@ -6,8 +6,9 @@ with open('README.md') as file:
setup(
name="tatt",
version="0.1",
version="0.12",
py_modules=['tatt'],
url='https://github.com/zevaverbach/tatt',
install_requires=[
'Click',
'awscli',
@@ -18,6 +19,7 @@ setup(
packages=find_packages(),
description=('Tatt creates a uniform API for multiple speech-to-text '
'(STT) services.'),
long_description_content_type='text/markdown',
long_description=long_description,
entry_points='''
[console_scripts]