-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
46 lines (42 loc) · 1.73 KB
/
pyproject.toml
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
[project]
name = "py3-tts"
dynamic = ["version"]
dependencies = [
"comtypes; platform_system == 'Windows'",
"pypiwin32; platform_system == 'Windows'",
"pywin32; platform_system == 'Windows'",
"pyobjc==9.0.1; platform_system == 'Darwin'",
"six"
]
description = "Text to Speech (TTS) library for Python 3. Works without internet connection or delay. Supports multiple TTS engines, including Sapi5, nsss, and espeak."
readme = "README.md"
authors = [{ name = "Vignesh Sivanandha Rao", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7"
]
keywords = ["pyttsx", "ivona", "pyttsx for python3", "TTS for python3", "py3-tts", "text to speech for python", "tts",
"text to speech", "speech", "speech synthesis", "offline text to speech", "offline tts", "gtts"]
requires-python = ">=3"
[tool.setuptools]
packages = ["pyttsx3", "pyttsx3.drivers"]
[tool.setuptools.dynamic]
version = { attr = "pyttsx3.version" }
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project.urls]
Homepage = "https://github.com/thevickypedia/py3-tts"
Source = "https://github.com/thevickypedia/py3-tts"
Docs = "https://py3-tts.vigneshrao.com"