-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathsetup.py
30 lines (28 loc) · 1.01 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
import setuptools
with open("README.md", "rb") as fh:
long_description = fh.read().decode("utf-8")
setuptools.setup(
name="vosk-tts",
version="0.3.56",
author="Alpha Cephei Inc",
author_email="[email protected]",
description="Offline text to speech synthesis",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/alphacep/vosk-tts",
packages=setuptools.find_packages(),
entry_points = {
'console_scripts': ['vosk-tts=vosk_tts.cli:main'],
},
include_package_data=True,
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: Apache Software License',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'Topic :: Software Development :: Libraries :: Python Modules'
],
python_requires='>=3.7',
install_requires=['onnxruntime', 'tqdm', 'requests'],
)