[Python Otel] Fix packaging issue (v1.62.x backport) (#35936)
Backport of #35929 to v1.62.x. --- <!-- If you know who should review your pull request, please assign it to that person, otherwise the pull request would get assigned randomly. If your pull request is for a specific language, please add the appropriate lang label. -->
This commit is contained in:
parent
ef03a269f5
commit
bc4f8340b8
|
|
@ -1,11 +1,12 @@
|
|||
gRPC Python Observability
|
||||
===========
|
||||
=========================
|
||||
|
||||
Package for gRPC Python Observability.
|
||||
|
||||
More details can be found in `OpenTelemetry Metrics gRFC <https://github.com/grpc/proposal/blob/master/A66-otel-stats.md#opentelemetry-metrics>`_.
|
||||
|
||||
How gRPC Python Observability Works
|
||||
-------------------------
|
||||
-----------------------------------
|
||||
|
||||
gRPC Python is a wrapper layer built upon the gRPC Core (written in C/C++). Most of telemetry data
|
||||
is collected at core layer and then exported to Python layer. To optimize performance and reduce
|
||||
|
|
|
|||
|
|
@ -41,7 +41,7 @@ import grpc_version
|
|||
_parallel_compile_patch.monkeypatch_compile_maybe()
|
||||
|
||||
CLASSIFIERS = [
|
||||
"Private :: Do Not Upload",
|
||||
"Development Status :: 4 - Beta",
|
||||
"Programming Language :: Python",
|
||||
"Programming Language :: Python :: 3",
|
||||
"License :: OSI Approved :: Apache Software License",
|
||||
|
|
@ -274,6 +274,7 @@ setuptools.setup(
|
|||
name="grpcio-observability",
|
||||
version=grpc_version.VERSION,
|
||||
description="gRPC Python observability package",
|
||||
long_description_content_type="text/x-rst",
|
||||
long_description=open(README_PATH, "r").read(),
|
||||
author="The gRPC Authors",
|
||||
author_email="grpc-io@googlegroups.com",
|
||||
|
|
|
|||
Loading…
Reference in New Issue