diff --git a/setup.py b/setup.py index eb03084..2fb9cc6 100644 --- a/setup.py +++ b/setup.py @@ -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" ] } @@ -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, @@ -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",