forked from CjangCjengh/MoeGoe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (40 loc) · 814 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
from setuptools import setup, find_packages
setup(
name='MoeGoe',
version='1.0',
packages=find_packages(),
install_requires=[
'numba',
'librosa',
'numpy==1.23',
'flask_cors',
'flask',
'jsonify',
'scipy',
'torch',
'unidecode',
'openjtalk>=0.3.0.dev2',
'jamo',
'pypinyin',
'jieba',
'protobuf',
'cn2an',
'inflect',
'eng_to_ipa',
'ko_pron',
'indic_transliteration',
'num_thai',
'opencc',
'audonnx',
'python-dotenv'
],
entry_points={
'console_scripts': [
'moegoe = MoeGoe.__main__:main'
]
},
include_package_data=True,
package_data={
'MoeGoe': ['*.yaml']
}
)