setup.py 1.65 KB
Newer Older
liugh5's avatar
liugh5 committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
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,
)