-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (27 loc) · 805 Bytes
/
setup.py
File metadata and controls
31 lines (27 loc) · 805 Bytes
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
import setuptools
from os.path import join, dirname
version = "0.3.4"
with open(join(dirname(__file__), 'README.md'), encoding='utf-8') as f:
long_description = f.read()
with open('requirements.txt') as fin:
requirements = fin.read().splitlines()
setuptools.setup(
name='tinkoff_voicekit_client',
version=version,
license="Apache License Version 2.0",
author="Tinkoff Speech Team",
python_requires=">=3.6",
description='Python Tinkoff Speech API',
long_description=long_description,
long_description_content_type='text/markdown',
packages=setuptools.find_packages(),
test_suite="tests",
setup_requires=[
"pytest-runner",
],
tests_require=[
"pytest",
],
include_package_data=True,
install_requires=requirements,
)