-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
28 lines (26 loc) · 983 Bytes
/
setup.py
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
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="[email protected]",
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",
)