-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (30 loc) · 1.27 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
from distutils.core import setup
setup(
name = 'NBSapi',
packages = ['NBSapi'],
version = '0.6',
license=' GPL-3.0',
description = 'a python library that helps you to control the sapi5 TTS',
author = 'nacer baaziz',
author_email = '[email protected]',
url = 'https://github.com/baaziznasser/nbsapi',
download_url = 'https://github.com/baaziznasser/nbsapi/archive/refs/tags/0.6.tar.gz',
keywords = ['nbsapi', 'NBSapi', 'Sapi', 'tts', 'python text to speech', 'audio', 'screen reader', 'voices', 'sapi5', 'spvoice', 'text to speech', 'audio book'],
install_requires=[
'comtypes',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
)