Japanese and Mandarin Chinese (#20)

This commit is contained in:
hexgrad
2025-01-29 11:18:39 -08:00
committed by GitHub
parent aed687eab3
commit 3ab76a9817
3 changed files with 34 additions and 10 deletions

View File

@@ -1,10 +1,10 @@
from setuptools import setup, find_packages
setup(
name='kokoro', # Name of the package
version='0.3.0', # Initial version
packages=find_packages(), # Automatically finds packages
install_requires=[ # List your dependencies here
name='kokoro',
version='0.3.1',
packages=find_packages(),
install_requires=[
'huggingface_hub',
'misaki[en]>=0.6.1',
'numpy==1.26.4',
@@ -12,15 +12,15 @@ setup(
'torch',
'transformers',
],
python_requires='>=3.6', # Minimum Python version required
python_requires='>=3.6',
author='hexgrad',
author_email='hello@hexgrad.com',
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
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/hexgrad/kokoro',
license='Apache 2.0',
classifiers=[ # This helps users discover your package
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',