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:
19
setup.py
19
setup.py
@@ -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,
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user