Skip to content

Commit bc4f834

Browse files
[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. -->
1 parent ef03a26 commit bc4f834

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

src/python/grpcio_observability/README.rst

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
gRPC Python Observability
2-
===========
2+
=========================
3+
34
Package for gRPC Python Observability.
45

56
More details can be found in `OpenTelemetry Metrics gRFC <https://github.com/grpc/proposal/blob/master/A66-otel-stats.md#opentelemetry-metrics>`_.
67

78
How gRPC Python Observability Works
8-
-------------------------
9+
-----------------------------------
910

1011
gRPC Python is a wrapper layer built upon the gRPC Core (written in C/C++). Most of telemetry data
1112
is collected at core layer and then exported to Python layer. To optimize performance and reduce

src/python/grpcio_observability/setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
_parallel_compile_patch.monkeypatch_compile_maybe()
4242

4343
CLASSIFIERS = [
44-
"Private :: Do Not Upload",
44+
"Development Status :: 4 - Beta",
4545
"Programming Language :: Python",
4646
"Programming Language :: Python :: 3",
4747
"License :: OSI Approved :: Apache Software License",
@@ -274,6 +274,7 @@ def extension_modules():
274274
name="grpcio-observability",
275275
version=grpc_version.VERSION,
276276
description="gRPC Python observability package",
277+
long_description_content_type="text/x-rst",
277278
long_description=open(README_PATH, "r").read(),
278279
author="The gRPC Authors",
279280
author_email="[email protected]",

0 commit comments

Comments
 (0)