rid warning (#789)

This commit is contained in:
Awni Hannun 2024-05-20 06:05:33 -07:00 committed by GitHub
parent 42458914c8
commit e92de216fd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3,7 +3,7 @@
import sys
from pathlib import Path
from setuptools import find_packages, setup
from setuptools import find_namespace_packages, setup
package_dir = Path(__file__).parent / "mlx_whisper"
@ -26,7 +26,7 @@ setup(
url="https://github.com/ml-explore/mlx-examples",
license="MIT",
install_requires=requirements,
packages=find_packages(),
packages=find_namespace_packages(),
include_package_data=True,
python_requires=">=3.8",
)