Files
kokoro/setup.py
hexgrad ed4639ffdf Bump to 0.7.3 (#49)
* Bump to 0.7.3

* Update README.md
2025-02-03 22:38:30 -08:00

29 lines
771 B
Python

from setuptools import setup, find_packages
setup(
name='kokoro',
version='0.7.3',
packages=find_packages(),
install_requires=[
'huggingface_hub',
'loguru',
'misaki[en]>=0.7.3',
'numpy==1.26.4',
'scipy',
'torch',
'transformers',
],
python_requires='>=3.7',
author='hexgrad',
author_email='hello@hexgrad.com',
description='TTS',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/hexgrad/kokoro',
license='Apache 2.0',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
],
)