forked from hexgrad/kokoro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (27 loc) · 1023 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
from setuptools import setup, find_packages
setup(
name='kokoro', # Name of the package
version='0.2.3', # Initial version
packages=find_packages(), # Automatically finds packages
install_requires=[ # List your dependencies here
'huggingface_hub',
'misaki[en]>=0.6.1',
'numpy==1.26.4',
'scipy',
'torch',
'transformers',
],
python_requires='>=3.6', # Minimum Python version required
author='hexgrad',
author_email='[email protected]',
description='TTS',
long_description=open('README.md').read(), # Content from your README
long_description_content_type='text/markdown', # Required for markdown
url='https://github.com/hexgrad/kokoro', # GitHub repo URL
license='Apache 2.0',
classifiers=[ # This helps users discover your package
'Programming Language :: Python :: 3',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
],
)