[Python Otel] Fix packaging issue (#35929)

<!--

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.

-->
pull/34384/head
Xuan Wang 11 months ago committed by GitHub
parent 7a43130d10
commit 88c5f25997
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 5
      src/python/grpcio_observability/README.rst
  2. 3
      src/python/grpcio_observability/setup.py

@ -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

@ -40,7 +40,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",
@ -257,6 +257,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…
Cancel
Save