sayak-brm/espeak4py

View on GitHub
setup.py

Summary

Maintainability
A
0 mins
Test Coverage
import setuptools

with open("README.md", "r") as rm:
    long_description = rm.read()

setuptools.setup(
    name="espeakng",
    version="1.0.3",
    author="Sayak B",
    author_email="me@sayakb.com",
    description="An eSpeak NG TTS binding for Python3",
    long_description=long_description,
    long_description_content_type="text/markdown",
    keywords=["tts", "espeak", "speakng", "espeakng", "speech"],
    url="https://sayak-brm.github.io/espeakng-python/",
    packages=setuptools.find_packages(),
    classifiers=[
        "Development Status :: 4 - Beta",
        "Intended Audience :: Developers",
        "Programming Language :: Python :: 3 :: Only",
        "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
        "Programming Language :: Python :: 3.9",
        "Programming Language :: Python :: 3.10",
        "Programming Language :: Python :: 3.11",
        "Programming Language :: Python :: 3.12",
    ],
    python_requires=">=3.9",
)