forked from Uberi/speech_recognition
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
45 lines (40 loc) · 1.6 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
45
#!/usr/bin/env python3
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 {0}".format(sys.version))
sys.exit(1)
import speech_recognition
setup(
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 wit ibm att",
url = "https://github.com/Uberi/speech_recognition#readme",
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: BSD License",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Other OS",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Multimedia :: Sound/Audio :: Speech",
],
)