-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (40 loc) · 1.06 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
39
40
41
from setuptools import setup, find_packages
setup(
name='nonebot_plugin_vits_tts',
version='0.1.7',
packages=find_packages(),
install_requires=[
'torch',
'torchvision',
'torchaudio',
'numpy>=1.22.0',
'scipy',
'regex',
'cn2an',
'opencc',
'inflect',
'unidecode',
'eng_to_ipa',
'pyopenjtalk-prebuilt',
'jamo',
'ko_pron',
'pypinyin',
'jieba',
'indic_transliteration',
'num_thai',
'pydub',
'numba',
'tencentcloud-sdk-python-tmt',
'langdetect',
'nonebot-adapter-onebot>=2.0.0',
'nonebot2>=2.0.0'
],
author='Redmomn',
author_email='[email protected]',
description='nonebot-plugin-vits-tts',
long_description=open('README.md', encoding='utf-8').read(),
long_description_content_type='text/markdown',
license='Apache-2.0',
keywords=['nonebot2', 'vits', 'tts'],
url='https://github.com/Redmomn/nonebot-plugin-vits-tts'
)