-
Notifications
You must be signed in to change notification settings - Fork 3.5k
/
setup.py
38 lines (36 loc) · 1.1 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
import os
from setuptools import setup, find_packages
version = "v0.0.0"
setup(
name="chattts",
version=os.environ.get("CHTTS_VER", version).lstrip("v"),
description="A generative speech model for daily dialogue",
long_description=open("README.md", encoding="utf8").read(),
long_description_content_type="text/markdown",
author="2noise",
author_email="open-source@2noise.com",
maintainer="fumiama",
url="https://github.com/2noise/ChatTTS",
packages=find_packages(include=["ChatTTS", "ChatTTS.*"]),
package_data={
"ChatTTS.res": ["homophones_map.json", "sha256_map.json"],
},
license="AGPLv3+",
install_requires=[
"numba",
"numpy<2.0.0",
"pybase16384",
"torch>=2.1.0",
"torchaudio",
"tqdm",
"transformers>=4.41.1",
"vector_quantize_pytorch",
"vocos",
],
platforms="any",
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
],
)