2 Star 1 Fork 0

Meng Wei/KAN-TTS

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.65 KB
一键复制 编辑 原始数据 按行查看 历史
Jin 提交于 2022-08-18 21:44 . [init] code release
from setuptools import find_packages, setup
version = "0.0.1"
with open("README.md", "r", encoding="utf-8") as readme_file:
README = readme_file.read()
setup(
name="kantts",
version=version,
url="https://github.com/AlibabaResearch/KAN-TTS",
author="Jin",
description="Alibaba DAMO Speech-Lab Text to Speech deeplearning toolchain",
long_description=README,
long_description_content_type="text/markdown",
license="MIT",
# cython
# include_dirs=numpy.get_include(),
# ext_modules=find_cython_extensions(),
# package
include_package_data=True,
packages=find_packages(include=["kantts*"]),
project_urls={
"Documentation": "https://github.com/AlibabaResearch/KAN-TTS/wiki",
"Tracker": "",
"Repository": "https://github.com/AlibabaResearch/KAN-TTS",
"Discussions": "",
},
python_requires=">=3.7.0, <3.9",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Operating System :: POSIX :: Linux",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Multimedia :: Sound/Audio :: Speech",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
zip_safe=False,
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wmeng223/KAN-TTS.git
git@gitee.com:wmeng223/KAN-TTS.git
wmeng223
KAN-TTS
KAN-TTS
main

搜索帮助