55 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			TOML
		
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			TOML
		
	
	
	
[build-system]
 | 
						|
requires = ["hatchling"]
 | 
						|
build-backend = "hatchling.build"
 | 
						|
 | 
						|
[project]
 | 
						|
name = "opentelemetry-instrumentation-aiopg"
 | 
						|
dynamic = ["version"]
 | 
						|
description = "OpenTelemetry aiopg instrumentation"
 | 
						|
readme = "README.rst"
 | 
						|
license = "Apache-2.0"
 | 
						|
requires-python = ">=3.8"
 | 
						|
authors = [
 | 
						|
  { name = "OpenTelemetry Authors", email = "cncf-opentelemetry-contributors@lists.cncf.io" },
 | 
						|
]
 | 
						|
classifiers = [
 | 
						|
  "Development Status :: 4 - Beta",
 | 
						|
  "Intended Audience :: Developers",
 | 
						|
  "License :: OSI Approved :: Apache Software License",
 | 
						|
  "Programming Language :: Python",
 | 
						|
  "Programming Language :: Python :: 3",
 | 
						|
  "Programming Language :: Python :: 3.8",
 | 
						|
  "Programming Language :: Python :: 3.9",
 | 
						|
  "Programming Language :: Python :: 3.10",
 | 
						|
  "Programming Language :: Python :: 3.11",
 | 
						|
]
 | 
						|
dependencies = [
 | 
						|
  "opentelemetry-api ~= 1.12",
 | 
						|
  "opentelemetry-instrumentation == 0.46b0.dev",
 | 
						|
  "opentelemetry-instrumentation-dbapi == 0.46b0.dev",
 | 
						|
  "wrapt >= 1.0.0, < 2.0.0",
 | 
						|
]
 | 
						|
 | 
						|
[project.optional-dependencies]
 | 
						|
instruments = [
 | 
						|
  "aiopg >= 0.13.0, < 2.0.0",
 | 
						|
]
 | 
						|
 | 
						|
[project.entry-points.opentelemetry_instrumentor]
 | 
						|
aiopg = "opentelemetry.instrumentation.aiopg:AiopgInstrumentor"
 | 
						|
 | 
						|
[project.urls]
 | 
						|
Homepage = "https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-aiopg"
 | 
						|
 | 
						|
[tool.hatch.version]
 | 
						|
path = "src/opentelemetry/instrumentation/aiopg/version.py"
 | 
						|
 | 
						|
[tool.hatch.build.targets.sdist]
 | 
						|
include = [
 | 
						|
  "/src",
 | 
						|
  "/tests",
 | 
						|
]
 | 
						|
 | 
						|
[tool.hatch.build.targets.wheel]
 | 
						|
packages = ["src/opentelemetry"]
 |