Skip to content

Commit b71e5fb

Browse files
authored
Update package metadata opentelemetry-instrumentation-aio-pika (#1263)
1 parent 960bb4d commit b71e5fb

File tree

4 files changed

+58
-165
lines changed

4 files changed

+58
-165
lines changed

instrumentation/opentelemetry-instrumentation-aio-pika/MANIFEST.in

Lines changed: 0 additions & 9 deletions
This file was deleted.
Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
[build-system]
2+
requires = ["hatchling"]
3+
build-backend = "hatchling.build"
4+
5+
[project]
6+
name = "opentelemetry-instrumentation-aio-pika"
7+
dynamic = ["version"]
8+
description = "OpenTelemetry Aio-pika instrumentation"
9+
readme = "README.rst"
10+
license = "Apache-2.0"
11+
requires-python = ">=3.7"
12+
authors = [
13+
{ name = "OpenTelemetry Authors", email = "[email protected]" },
14+
]
15+
classifiers = [
16+
"Development Status :: 4 - Beta",
17+
"Intended Audience :: Developers",
18+
"License :: OSI Approved :: Apache Software License",
19+
"Programming Language :: Python",
20+
"Programming Language :: Python :: 3",
21+
"Programming Language :: Python :: 3.7",
22+
"Programming Language :: Python :: 3.8",
23+
"Programming Language :: Python :: 3.9",
24+
"Programming Language :: Python :: 3.10",
25+
]
26+
dependencies = [
27+
"opentelemetry-api ~= 1.5",
28+
"wrapt >= 1.0.0, < 2.0.0",
29+
]
30+
31+
[project.optional-dependencies]
32+
instruments = [
33+
"aio_pika ~= 7.2.0",
34+
]
35+
test = [
36+
"opentelemetry-instrumentation-aio-pika[instruments]",
37+
"opentelemetry-test-utils == 0.33b0",
38+
"pytest",
39+
"wrapt >= 1.0.0, < 2.0.0",
40+
]
41+
42+
[project.entry-points.opentelemetry_instrumentor]
43+
aio-pika = "opentelemetry.instrumentation.aio_pika:AioPikaInstrumentor"
44+
45+
[project.urls]
46+
Homepage = "https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-aio-pika"
47+
48+
[tool.hatch.version]
49+
path = "src/opentelemetry/instrumentation/aio_pika/version.py"
50+
51+
[tool.hatch.build.targets.sdist]
52+
include = [
53+
"/src",
54+
"/tests",
55+
]
56+
57+
[tool.hatch.build.targets.wheel]
58+
packages = ["src/opentelemetry"]

instrumentation/opentelemetry-instrumentation-aio-pika/setup.cfg

Lines changed: 0 additions & 57 deletions
This file was deleted.

instrumentation/opentelemetry-instrumentation-aio-pika/setup.py

Lines changed: 0 additions & 99 deletions
This file was deleted.

0 commit comments

Comments
 (0)