forked from speechcatcher-asr/speechcatcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (27 loc) · 1.09 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
from setuptools import setup, find_packages
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(
name='speechcatcher',
version='0.4.0',
author="Benjamin Milde",
author_email="[email protected]",
description="Speechcatcher is an open source toolbox for transcribing speech from media files (audio/video).",
url="https://github.com/speechcatcher-asr/speechcatcher",
packages=find_packages(),
install_requires=requirements,
entry_points={
'console_scripts': [
'speechcatcher=speechcatcher.speechcatcher:main',
'speechcatcher_compute_wer=speechcatcher.compute_wer:main',
'speechcatcher_server=speechcatcher.speechcatcher_server:main',
'speechcatcher_vosk_test_client=speechcatcher.vosk_test_client:main',
'speechcatcher_simple_endpointing=speechcatcher.simple_endpointing:main'
]
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
)