opentelemetry-instrumentation-tornado 0.49b2__tar.gz → 0.51b0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (13) hide show
  1. {opentelemetry_instrumentation_tornado-0.49b2 → opentelemetry_instrumentation_tornado-0.51b0}/PKG-INFO +9 -6
  2. {opentelemetry_instrumentation_tornado-0.49b2 → opentelemetry_instrumentation_tornado-0.51b0}/pyproject.toml +5 -3
  3. {opentelemetry_instrumentation_tornado-0.49b2 → opentelemetry_instrumentation_tornado-0.51b0}/src/opentelemetry/instrumentation/tornado/version.py +1 -1
  4. {opentelemetry_instrumentation_tornado-0.49b2 → opentelemetry_instrumentation_tornado-0.51b0}/.gitignore +0 -0
  5. {opentelemetry_instrumentation_tornado-0.49b2 → opentelemetry_instrumentation_tornado-0.51b0}/LICENSE +0 -0
  6. {opentelemetry_instrumentation_tornado-0.49b2 → opentelemetry_instrumentation_tornado-0.51b0}/README.rst +0 -0
  7. {opentelemetry_instrumentation_tornado-0.49b2 → opentelemetry_instrumentation_tornado-0.51b0}/src/opentelemetry/instrumentation/tornado/__init__.py +0 -0
  8. {opentelemetry_instrumentation_tornado-0.49b2 → opentelemetry_instrumentation_tornado-0.51b0}/src/opentelemetry/instrumentation/tornado/client.py +0 -0
  9. {opentelemetry_instrumentation_tornado-0.49b2 → opentelemetry_instrumentation_tornado-0.51b0}/src/opentelemetry/instrumentation/tornado/package.py +0 -0
  10. {opentelemetry_instrumentation_tornado-0.49b2 → opentelemetry_instrumentation_tornado-0.51b0}/tests/__init__.py +0 -0
  11. {opentelemetry_instrumentation_tornado-0.49b2 → opentelemetry_instrumentation_tornado-0.51b0}/tests/test_instrumentation.py +0 -0
  12. {opentelemetry_instrumentation_tornado-0.49b2 → opentelemetry_instrumentation_tornado-0.51b0}/tests/test_metrics_instrumentation.py +0 -0
  13. {opentelemetry_instrumentation_tornado-0.49b2 → opentelemetry_instrumentation_tornado-0.51b0}/tests/tornado_test_app.py +0 -0
@@ -1,10 +1,12 @@
1
- Metadata-Version: 2.3
1
+ Metadata-Version: 2.4
2
2
  Name: opentelemetry-instrumentation-tornado
3
- Version: 0.49b2
3
+ Version: 0.51b0
4
4
  Summary: Tornado instrumentation for OpenTelemetry
5
5
  Project-URL: Homepage, https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-tornado
6
+ Project-URL: Repository, https://github.com/open-telemetry/opentelemetry-python-contrib
6
7
  Author-email: OpenTelemetry Authors <cncf-opentelemetry-contributors@lists.cncf.io>
7
- License: Apache-2.0
8
+ License-Expression: Apache-2.0
9
+ License-File: LICENSE
8
10
  Classifier: Development Status :: 4 - Beta
9
11
  Classifier: Intended Audience :: Developers
10
12
  Classifier: License :: OSI Approved :: Apache Software License
@@ -14,11 +16,12 @@ Classifier: Programming Language :: Python :: 3.9
14
16
  Classifier: Programming Language :: Python :: 3.10
15
17
  Classifier: Programming Language :: Python :: 3.11
16
18
  Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Programming Language :: Python :: 3.13
17
20
  Requires-Python: >=3.8
18
21
  Requires-Dist: opentelemetry-api~=1.12
19
- Requires-Dist: opentelemetry-instrumentation==0.49b2
20
- Requires-Dist: opentelemetry-semantic-conventions==0.49b2
21
- Requires-Dist: opentelemetry-util-http==0.49b2
22
+ Requires-Dist: opentelemetry-instrumentation==0.51b0
23
+ Requires-Dist: opentelemetry-semantic-conventions==0.51b0
24
+ Requires-Dist: opentelemetry-util-http==0.51b0
22
25
  Provides-Extra: instruments
23
26
  Requires-Dist: tornado>=5.1.1; extra == 'instruments'
24
27
  Description-Content-Type: text/x-rst
@@ -22,12 +22,13 @@ classifiers = [
22
22
  "Programming Language :: Python :: 3.10",
23
23
  "Programming Language :: Python :: 3.11",
24
24
  "Programming Language :: Python :: 3.12",
25
+ "Programming Language :: Python :: 3.13",
25
26
  ]
26
27
  dependencies = [
27
28
  "opentelemetry-api ~= 1.12",
28
- "opentelemetry-instrumentation == 0.49b2",
29
- "opentelemetry-semantic-conventions == 0.49b2",
30
- "opentelemetry-util-http == 0.49b2",
29
+ "opentelemetry-instrumentation == 0.51b0",
30
+ "opentelemetry-semantic-conventions == 0.51b0",
31
+ "opentelemetry-util-http == 0.51b0",
31
32
  ]
32
33
 
33
34
  [project.optional-dependencies]
@@ -40,6 +41,7 @@ tornado = "opentelemetry.instrumentation.tornado:TornadoInstrumentor"
40
41
 
41
42
  [project.urls]
42
43
  Homepage = "https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-tornado"
44
+ Repository = "https://github.com/open-telemetry/opentelemetry-python-contrib"
43
45
 
44
46
  [tool.hatch.version]
45
47
  path = "src/opentelemetry/instrumentation/tornado/version.py"
@@ -12,4 +12,4 @@
12
12
  # See the License for the specific language governing permissions and
13
13
  # limitations under the License.
14
14
 
15
- __version__ = "0.49b2"
15
+ __version__ = "0.51b0"