-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 882 Bytes
/
setup.py
File metadata and controls
31 lines (29 loc) · 882 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
from setuptools import find_packages, setup
with open("requirements.txt") as f:
requirements = [l.strip() for l in f.readlines()]
setup(
name='whisper-turbo-mlx',
url='https://github.com/JosefAlbers/whisper-turbo-mlx',
py_modules=['whisper_turbo'],
packages=find_packages(),
version='0.0.2-alpha',
readme="README.md",
author_email="albersj66@gmail.com",
description="Whisper Turbo in MLX",
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
author="Josef Albers",
license="MIT",
python_requires=">=3.12.3",
install_requires=requirements,
extras_require={
'cuda': ['mlx[cuda]'],
'cpu': ['mlx[cpu]'],
'no_mlx': [],
},
entry_points={
"console_scripts": [
"wtm = whisper_turbo:fire_main",
],
},
)