-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathsetup.py
30 lines (29 loc) · 1.03 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
from setuptools import setup
setup(
name='asr_evaluation',
version='2.0.5',
author='Ben Lambert',
author_email='[email protected]',
packages=['asr_evaluation'],
license='LICENSE.txt',
description='Evaluating ASR (automatic speech recognition) hypotheses, i.e. computing word error rate.',
install_requires=['edit_distance', 'termcolor'],
test_suite='test.test.TestASREvaluation',
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
entry_points={
'console_scripts': [
'wer = asr_evaluation.__main__:main'
]
},
keywords=['word', 'error', 'rate', 'asr', 'speech', 'recognition'],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Text Processing",
"Topic :: Utilities",
"License :: OSI Approved :: Apache Software License"
]
)