forked from ydb-platform/ydb-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 728 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 728 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
# -*- coding: utf-8 -*-
import setuptools
setuptools.setup(
name='ydb',
version='0.0.29',
description='YDB Python library',
author='Yandex LLC',
url='http://github.com/yandex-cloud/ydb-python-sdk',
license='Apache 2.0',
package_dir={'': '.'},
packages=setuptools.find_packages('.'),
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
install_requires=(
'protobuf>=3.3.0',
'grpcio>=1.5.0',
'enum-compat>=0.0.1',
)
)