-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for AT&T Speech to Text, bump version.
- Loading branch information
Showing
6 changed files
with
126 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,29 @@ | ||
#!/usr/bin/env python3 | ||
|
||
from setuptools import setup, find_packages | ||
from setuptools import setup | ||
|
||
import sys | ||
if sys.version_info < (2, 6): | ||
print("THIS MODULE REQUIRES PYTHON 2.6 OR LATER. YOU ARE CURRENTLY USING PYTHON " + sys.version) | ||
print("THIS MODULE REQUIRES PYTHON 2.6 OR LATER. YOU ARE CURRENTLY USING PYTHON {0}".format(sys.version)) | ||
sys.exit(1) | ||
|
||
import speech_recognition | ||
|
||
setup( | ||
name="SpeechRecognition", | ||
version=speech_recognition.__version__, | ||
packages=["speech_recognition"], | ||
include_package_data=True, | ||
name = "SpeechRecognition", | ||
version = speech_recognition.__version__, | ||
packages = ["speech_recognition"], | ||
include_package_data = True, | ||
|
||
# PyPI metadata | ||
author=speech_recognition.__author__, | ||
author_email="[email protected]", | ||
description=speech_recognition.__doc__, | ||
long_description=open("README.rst").read(), | ||
license=speech_recognition.__license__, | ||
keywords="speech recognition google", | ||
url="https://github.com/Uberi/speech_recognition#readme", | ||
classifiers=[ | ||
author = speech_recognition.__author__, | ||
author_email = "[email protected]", | ||
description = speech_recognition.__doc__, | ||
long_description = open("README.rst").read(), | ||
license = speech_recognition.__license__, | ||
keywords = "speech recognition google", | ||
url = "https://github.com/Uberi/speech_recognition#readme", | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Intended Audience :: Developers", | ||
"Natural Language :: English", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters