1
0
mirror of https://github.com/malarinv/jasper-asr.git synced 2026-06-13 12:32:08 +00:00

fixed wav header issue

This commit is contained in:
2020-03-18 15:13:21 +05:30
parent 880dd8bf6a
commit 4f4371c944
4 changed files with 147 additions and 31 deletions

View File

@@ -1,5 +1,12 @@
from setuptools import setup
requirements = [
"ruamel.yaml",
"nemo_toolkit[asr] @ git+https://github.com/NVIDIA/NeMo.git@09e3ba4dfe333f86d6c5c1048e07210924294be9#egg=nemo_toolkit",
]
extra_requirements = {"server": ["rpyc==4.1.4"]}
setup(
name="jasper-asr",
version="0.1",
@@ -8,10 +15,14 @@ setup(
author="Malar Kannan",
author_email="malarkannan.invention@gmail.com",
license="MIT",
install_requires=[
"nemo_toolkit[asr] @ git+https://github.com/NVIDIA/NeMo.git@09e3ba4dfe333f86d6c5c1048e07210924294be9#egg=nemo_toolkit"
],
install_requires=requirements,
extras_require=extra_requirements,
packages=["."],
entry_points={"console_scripts": ["jasper_transcribe = jasper.__main__:main"]},
entry_points={
"console_scripts": [
"jasper_transcribe = jasper.__main__:main",
"asr_rpyc_server = jasper.server:main",
]
},
zip_safe=False,
)