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, )