|
| 1 | +[build-system] |
| 2 | +requires = ["hatchling"] |
| 3 | +build-backend = "hatchling.build" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "opentelemetry-test-utils" |
| 7 | +dynamic = ["version"] |
| 8 | +description = "Test utilities for OpenTelemetry unit tests" |
| 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 | + "asgiref ~= 3.0", |
| 28 | + "opentelemetry-api == 1.12.0", |
| 29 | + "opentelemetry-sdk == 1.12.0", |
| 30 | +] |
| 31 | + |
| 32 | +[project.optional-dependencies] |
| 33 | +test = [] |
| 34 | + |
| 35 | +[project.urls] |
| 36 | +Homepage = "https://github.com/open-telemetry/opentelemetry-python/tests/opentelemetry-test-utils" |
| 37 | + |
| 38 | +[tool.hatch.version] |
| 39 | +path = "src/opentelemetry/test/version.py" |
| 40 | + |
| 41 | +[tool.hatch.build.targets.sdist] |
| 42 | +include = [ |
| 43 | + "/src", |
| 44 | +] |
| 45 | + |
| 46 | +[tool.hatch.build.targets.wheel] |
| 47 | +packages = ["src/opentelemetry"] |
0 commit comments