This commit is contained in:
hexgrad
2025-01-12 15:01:20 -08:00
parent 01ee6cb9c9
commit 3e5235de00
2 changed files with 30 additions and 0 deletions

3
pyproject.toml Normal file
View File

@@ -0,0 +1,3 @@
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"

27
setup.py Normal file
View File

@@ -0,0 +1,27 @@
from setuptools import setup, find_packages
setup(
name='kokoro', # Name of the package
version='0.1.0', # Initial version
packages=find_packages(), # Automatically finds packages
install_requires=[ # List your dependencies here
'numpy',
'phonemizer',
'scipy',
'torch',
'transformers',
],
python_requires='>=3.6', # Minimum Python version required
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
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',
],
)