Files
ChatTTS/setup.py
T
github-actions[bot] 93db24b4b2 chore(format): run black on main (#443)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2024-06-25 17:22:13 +09:00

36 lines
1000 B
Python

import os
from setuptools import setup, find_packages
setup(
name="chattts",
version=os.environ.get("CHTTS_VER", "develop"),
description="A generative speech model for daily dialogue",
long_description=open("README.md").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="CC BY-NC 4.0",
install_requires=[
"numba",
"numpy<2.0.0",
"omegaconf>=2.3.0",
"pybase16384",
"torch>=2.1.0",
"tqdm",
"transformers>=4.41.1",
"vector_quantize_pytorch",
"vocos",
],
platforms="any",
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)