Skip to content

Commit e569196

Browse files
authored
Update package metadata docs/examples/error_handler (#2914)
1 parent 2b32606 commit e569196

File tree

6 files changed

+84
-144
lines changed

6 files changed

+84
-144
lines changed
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
[build-system]
2+
requires = ["hatchling"]
3+
build-backend = "hatchling.build"
4+
5+
[project]
6+
name = "error-handler-0"
7+
dynamic = ["version"]
8+
description = "This is just an error handler example package"
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-sdk ~= 1.3",
28+
]
29+
30+
[project.entry-points.opentelemetry_error_handler]
31+
error_handler_0 = "error_handler_0:ErrorHandler0"
32+
33+
[tool.hatch.version]
34+
path = "src/error_handler_0/version.py"
35+
36+
[tool.hatch.build.targets.sdist]
37+
include = [
38+
"/src",
39+
]
40+
41+
[tool.hatch.build.targets.wheel]
42+
packages = ["src/opentelemetry"]

docs/examples/error_handler/error_handler_0/setup.cfg

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

docs/examples/error_handler/error_handler_0/setup.py

Lines changed: 0 additions & 26 deletions
This file was deleted.
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
[build-system]
2+
requires = ["hatchling"]
3+
build-backend = "hatchling.build"
4+
5+
[project]
6+
name = "error-handler-1"
7+
dynamic = ["version"]
8+
description = "This is just an error handler example package"
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-sdk ~= 1.3",
28+
]
29+
30+
[project.entry-points.opentelemetry_error_handler]
31+
error_handler_1 = "error_handler_1:ErrorHandler1"
32+
33+
[tool.hatch.version]
34+
path = "src/error_handler_1/version.py"
35+
36+
[tool.hatch.build.targets.sdist]
37+
include = [
38+
"/src",
39+
]
40+
41+
[tool.hatch.build.targets.wheel]
42+
packages = ["src/opentelemetry"]

docs/examples/error_handler/error_handler_1/setup.cfg

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

docs/examples/error_handler/error_handler_1/setup.py

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

0 commit comments

Comments
 (0)