forked from art1415926535/yandex_speech
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (36 loc) · 1.3 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
import os
from setuptools import setup
NAME = "yandex_speech"
VERSION_PATH = os.path.join(os.path.dirname(__file__), NAME, "VERSION.txt")
with open(VERSION_PATH) as f:
version = f.read().strip()
setup(
name=NAME,
description="A library for Yandex speech kit",
long_description=open("README.rst").read(),
url="https://github.com/art1415926535/Yandex_speech",
version=version,
packages=[NAME],
package_data={NAME: ["VERSION.txt"]},
install_requires=["requests", "six"],
license="MIT",
author="Artem Fedotov",
author_email="[email protected]",
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: PyPy",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: Russian",
"Natural Language :: English",
"Natural Language :: Turkish",
"Natural Language :: Ukranian",
"Topic :: Multimedia :: Sound/Audio :: Speech"
],
keywords="yandex speech kit text-to-speech tts",
)