Skip to content

Commit 52929a5

Browse files
authored
Update package metadata opentelemetry-instrumentation-urllib3 (#1301)
1 parent 4d341e8 commit 52929a5

File tree

4 files changed

+60
-166
lines changed

4 files changed

+60
-166
lines changed

instrumentation/opentelemetry-instrumentation-urllib3/MANIFEST.in

Lines changed: 0 additions & 9 deletions
This file was deleted.
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
[build-system]
2+
requires = ["hatchling"]
3+
build-backend = "hatchling.build"
4+
5+
[project]
6+
name = "opentelemetry-instrumentation-urllib3"
7+
dynamic = ["version"]
8+
description = "OpenTelemetry urllib3 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.12",
28+
"opentelemetry-instrumentation == 0.33b0",
29+
"opentelemetry-semantic-conventions == 0.33b0",
30+
"opentelemetry-util-http == 0.33b0",
31+
"wrapt >= 1.0.0, < 2.0.0",
32+
]
33+
34+
[project.optional-dependencies]
35+
instruments = [
36+
"urllib3 >= 1.0.0, < 2.0.0",
37+
]
38+
test = [
39+
"opentelemetry-instrumentation-urllib3[instruments]",
40+
"httpretty ~= 1.0",
41+
"opentelemetry-test-utils == 0.33b0",
42+
]
43+
44+
[project.entry-points.opentelemetry_instrumentor]
45+
urllib3 = "opentelemetry.instrumentation.urllib3:URLLib3Instrumentor"
46+
47+
[project.urls]
48+
Homepage = "https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-urllib3"
49+
50+
[tool.hatch.version]
51+
path = "src/opentelemetry/instrumentation/urllib3/version.py"
52+
53+
[tool.hatch.build.targets.sdist]
54+
include = [
55+
"/src",
56+
"/tests",
57+
]
58+
59+
[tool.hatch.build.targets.wheel]
60+
packages = ["src/opentelemetry"]

instrumentation/opentelemetry-instrumentation-urllib3/setup.cfg

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

instrumentation/opentelemetry-instrumentation-urllib3/setup.py

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

0 commit comments

Comments
 (0)