Files
kokoro/setup.py
hexgrad 2f4d94bba2 Backward compatible KModel.Output and KPipeline.Result dataclasses (#40)
* Backward compatible KModel.Output and KPipeline.Result dataclasses

* Typo: Bool => bool

* Allow voice=None for quiet pipelines

* Specify class names

* Fixed and tested

* Update README.md
2025-02-02 11:05:25 -08:00

29 lines
771 B
Python

from setuptools import setup, find_packages
setup(
name='kokoro',
version='0.3.5',
packages=find_packages(),
install_requires=[
'huggingface_hub',
'loguru',
'misaki[en]>=0.6.7',
'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',
],
)