-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (31 loc) · 826 Bytes
/
setup.py
File metadata and controls
33 lines (31 loc) · 826 Bytes
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
# Copyright (C) 2025, Advanced Micro Devices, Inc. All rights reserved.
# SPDX-License-Identifier: MIT
from setuptools import setup, find_packages
setup(
name="lira",
version="0.1.0",
description="ASR package supporting Whisper and Zipformer models",
author="Your Name",
packages=find_packages(include=["lira", "lira.*"]),
install_requires=[
# "numpy",
# "onnxruntime",
"torch==2.8.0",
"torchaudio==2.8.0",
"sounddevice",
"transformers==4.52.4",
"soundfile",
"gradio",
"jiwer",
# dev tools
"onnx",
"optimum==1.26.1",
],
python_requires=">=3.7",
entry_points={
"console_scripts": [
"run_asr=lira.scripts.run_asr:main",
"lira=lira.cli:main",
],
},
)