forked from nateshmbhat/pyttsx3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (36 loc) · 1.66 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import platform
from setuptools import setup
# Ubuntu: sudo apt install espeak ffmpeg
install_requires = [
'comtypes; platform_system == "Windows"',
'pyobjc>=2.4; platform_system == "Darwin"'
]
with open('README.rst', 'r') as f:
long_description = f.read()
setup(
name='pyttsx3',
packages=['pyttsx3', 'pyttsx3.drivers'],
version='2.88',
description='Text to Speech (TTS) library for Python 2 and 3. Works without internet connection or delay. Supports multiple TTS engines, including Sapi5, nsss, and espeak.',
long_description=long_description,
summary='Offline Text to Speech library with multi-engine support',
author='Natesh M Bhat',
url='https://github.com/nateshmbhat/pyttsx3',
author_email='nateshmbhatofficial@gmail.com',
install_requires=install_requires ,
keywords=['pyttsx' , 'ivona','pyttsx for python3' , 'TTS for python3' , 'pyttsx3' ,'text to speech for python','tts','text to speech','speech','speech synthesis','offline text to speech','offline tts','gtts'],
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 :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
],
)