Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,18 @@
from setuptools import find_namespace_packages, setup

dirname = Path(os.path.dirname(__file__))
version = "v1.1.0"
version = "1.1.0"

requirements = {
"install": [
"setuptools<=65.0",
"numpy==1.24.4",
"setuptools",
"numpy>=1.24.4",
"kaldi_native_fbank",
"onnxruntime==1.18.0",
"sentencepiece==0.2.0",
"soundfile==0.12.1",
"onnxruntime>=1.17.0",
"sentencepiece>=0.2.0",
"soundfile>=0.12.1",
"huggingface_hub",
"protobuf>=3.19.6"
]
}

Expand All @@ -38,7 +39,7 @@
"with onnxruntime",
long_description=open(os.path.join(dirname, "README.md"), encoding="utf-8").read(),
long_description_content_type="text/markdown",
license="The MIT License",
license="MIT", # SPDX identifier
packages=find_namespace_packages(),
include_package_data=True,
install_requires=install_requires,
Expand All @@ -54,7 +55,6 @@
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Operating System :: POSIX :: Linux",
"License :: OSI Approved :: MIT License",
"Topic :: Multimedia :: Sound/Audio :: Speech",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
Expand Down
Loading