-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
26 lines (24 loc) · 799 Bytes
/
setup.py
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
from setuptools import find_packages, setup
with open("requirements.txt") as f:
requirements = [l.strip() for l in f.readlines()]
setup(
name='e2tts-mlx',
url='https://github.com/JosefAlbers/e2tts-mlx',
py_modules=['e2tts'],
packages=find_packages(),
version='0.0.4-beta',
readme="README.md",
author_email="[email protected]",
description="Embarrassingly Easy Fully Non-Autoregressive Zero-Shot TTS in MLX",
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
author="Josef Albers",
license="Apache License 2.0",
python_requires=">=3.12.3",
install_requires=requirements,
entry_points={
"console_scripts": [
"e2tts = e2tts:fire_main",
],
},
)