diff options
author | dvshkurko <dvshkurko@yandex-team.ru> | 2022-02-10 16:45:52 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:45:52 +0300 |
commit | c768a99151e47c3a4bb7b92c514d256abd301c4d (patch) | |
tree | 1a2c5ffcf89eb53ecd79dbc9bc0a195c27404d0c /contrib/libs/grpc/src/python/grpcio_channelz | |
parent | 321ee9bce31ec6e238be26dbcbe539cffa2c3309 (diff) | |
download | ydb-c768a99151e47c3a4bb7b92c514d256abd301c4d.tar.gz |
Restoring authorship annotation for <dvshkurko@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'contrib/libs/grpc/src/python/grpcio_channelz')
-rw-r--r-- | contrib/libs/grpc/src/python/grpcio_channelz/README.rst | 34 | ||||
-rw-r--r-- | contrib/libs/grpc/src/python/grpcio_channelz/setup.py | 12 | ||||
-rw-r--r-- | contrib/libs/grpc/src/python/grpcio_channelz/ya.make | 84 |
3 files changed, 65 insertions, 65 deletions
diff --git a/contrib/libs/grpc/src/python/grpcio_channelz/README.rst b/contrib/libs/grpc/src/python/grpcio_channelz/README.rst index 7a6a4845cd..d66d0c4f92 100644 --- a/contrib/libs/grpc/src/python/grpcio_channelz/README.rst +++ b/contrib/libs/grpc/src/python/grpcio_channelz/README.rst @@ -1,17 +1,17 @@ -gRPC Python Channelz package -============================== - -Channelz is a live debug tool in gRPC Python. - -Supported Python Versions -------------------------- -Python >= 3.5 - -Deprecated Python Versions --------------------------- -Python == 2.7. Python 2.7 support will be removed on January 1, 2020. - -Dependencies ------------- - -Depends on the `grpcio` package, available from PyPI via `pip install grpcio`. +gRPC Python Channelz package +============================== + +Channelz is a live debug tool in gRPC Python. + +Supported Python Versions +------------------------- +Python >= 3.5 + +Deprecated Python Versions +-------------------------- +Python == 2.7. Python 2.7 support will be removed on January 1, 2020. + +Dependencies +------------ + +Depends on the `grpcio` package, available from PyPI via `pip install grpcio`. diff --git a/contrib/libs/grpc/src/python/grpcio_channelz/setup.py b/contrib/libs/grpc/src/python/grpcio_channelz/setup.py index a6526b400d..678b5ef13f 100644 --- a/contrib/libs/grpc/src/python/grpcio_channelz/setup.py +++ b/contrib/libs/grpc/src/python/grpcio_channelz/setup.py @@ -18,9 +18,9 @@ import sys import setuptools -_PACKAGE_PATH = os.path.realpath(os.path.dirname(__file__)) -_README_PATH = os.path.join(_PACKAGE_PATH, 'README.rst') - +_PACKAGE_PATH = os.path.realpath(os.path.dirname(__file__)) +_README_PATH = os.path.join(_PACKAGE_PATH, 'README.rst') + # Ensure we're in the proper directory whether or not we're being used by pip. os.chdir(os.path.dirname(os.path.abspath(__file__))) @@ -53,8 +53,8 @@ CLASSIFIERS = [ '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.7', + 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'License :: OSI Approved :: Apache Software License', ] @@ -91,7 +91,7 @@ setuptools.setup( version=grpc_version.VERSION, license='Apache License 2.0', description='Channel Level Live Debug Information Service for gRPC', - long_description=open(_README_PATH, 'r').read(), + long_description=open(_README_PATH, 'r').read(), author='The gRPC Authors', author_email='grpc-io@googlegroups.com', classifiers=CLASSIFIERS, diff --git a/contrib/libs/grpc/src/python/grpcio_channelz/ya.make b/contrib/libs/grpc/src/python/grpcio_channelz/ya.make index 7c3506de6f..2703d70ab0 100644 --- a/contrib/libs/grpc/src/python/grpcio_channelz/ya.make +++ b/contrib/libs/grpc/src/python/grpcio_channelz/ya.make @@ -1,51 +1,51 @@ -PY23_LIBRARY() - +PY23_LIBRARY() + LICENSE(Apache-2.0) LICENSE_TEXTS(.yandex_meta/licenses.list.txt) -OWNER( - akastornov - dvshkurko - g:contrib - g:cpp-contrib -) - -PEERDIR( - contrib/libs/grpc/grpc - contrib/python/six -) - -IF (PYTHON2) - PEERDIR( - contrib/python/enum34 - contrib/python/futures - ) -ENDIF() - -ADDINCL( +OWNER( + akastornov + dvshkurko + g:contrib + g:cpp-contrib +) + +PEERDIR( + contrib/libs/grpc/grpc + contrib/python/six +) + +IF (PYTHON2) + PEERDIR( + contrib/python/enum34 + contrib/python/futures + ) +ENDIF() + +ADDINCL( ${ARCADIA_BUILD_ROOT}/contrib/libs/grpc - contrib/libs/grpc - contrib/libs/grpc/include -) - + contrib/libs/grpc + contrib/libs/grpc/include +) + IF (SANITIZER_TYPE == undefined) - # https://github.com/grpc/grpc/blob/v1.15.1/tools/bazel.rc#L43 - CXXFLAGS(-fno-sanitize=function) -ENDIF() - -NO_LINT() - -NO_COMPILER_WARNINGS() - -PY_SRCS( - TOP_LEVEL - grpc_channelz/__init__.py - grpc_channelz/v1/__init__.py + # https://github.com/grpc/grpc/blob/v1.15.1/tools/bazel.rc#L43 + CXXFLAGS(-fno-sanitize=function) +ENDIF() + +NO_LINT() + +NO_COMPILER_WARNINGS() + +PY_SRCS( + TOP_LEVEL + grpc_channelz/__init__.py + grpc_channelz/v1/__init__.py grpc_channelz/v1/_servicer.py - grpc_channelz/v1/channelz.py -) - + grpc_channelz/v1/channelz.py +) + IF (PYTHON3) PY_SRCS( TOP_LEVEL @@ -53,4 +53,4 @@ IF (PYTHON3) ) ENDIF() -END() +END() |