mirror of
https://github.com/2noise/ChatTTS.git
synced 2026-08-30 17:05:27 +08:00
d57dde191e
see more at #261 https://github.com/pytorch/pytorch/issues/91368 https://stackoverflow.com/questions/74902903/pytorch-memory-leak-reference-cycle-in-for-loop
16 lines
524 B
Python
16 lines
524 B
Python
from setuptools import setup, find_packages
|
|
setup(name='chattts',
|
|
version='0.0.1',
|
|
author='2noise',
|
|
url='https://github.com/2noise/ChatTTS',
|
|
install_requires=['omegaconf>=2.3.0',
|
|
'torch>=2.1.0',
|
|
'tqdm',
|
|
'vector_quantize_pytorch',
|
|
'transformers>=4.41.1',
|
|
'vocos',
|
|
'IPython',
|
|
], # 定义依赖哪些模块
|
|
packages=find_packages(), # 系统自动从当前目录开始找包
|
|
)
|