[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:
Xuan Wang 2024-02-16 17:39:28 -08:00 committed by GitHub
parent ef03a269f5
commit bc4f8340b8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 3 deletions

View File

@ -1,11 +1,12 @@
gRPC Python Observability gRPC Python Observability
=========== =========================
Package for 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>`_. 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 How gRPC Python Observability Works
------------------------- -----------------------------------
gRPC Python is a wrapper layer built upon the gRPC Core (written in C/C++). Most of telemetry data 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 is collected at core layer and then exported to Python layer. To optimize performance and reduce

View File

@ -41,7 +41,7 @@ import grpc_version
_parallel_compile_patch.monkeypatch_compile_maybe() _parallel_compile_patch.monkeypatch_compile_maybe()
CLASSIFIERS = [ CLASSIFIERS = [
"Private :: Do Not Upload", "Development Status :: 4 - Beta",
"Programming Language :: Python", "Programming Language :: Python",
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License", "License :: OSI Approved :: Apache Software License",
@ -274,6 +274,7 @@ setuptools.setup(
name="grpcio-observability", name="grpcio-observability",
version=grpc_version.VERSION, version=grpc_version.VERSION,
description="gRPC Python observability package", description="gRPC Python observability package",
long_description_content_type="text/x-rst",
long_description=open(README_PATH, "r").read(), long_description=open(README_PATH, "r").read(),
author="The gRPC Authors", author="The gRPC Authors",
author_email="grpc-io@googlegroups.com", author_email="grpc-io@googlegroups.com",