build(build plugin): add pyproject.toml

This commit is contained in:
2025-02-21 15:36:03 +08:00
parent d2b1b59c66
commit 498144c79c
+20
View File
@@ -0,0 +1,20 @@
[build-system]
requires = ["setuptools>=61.0", "wheel"] # Specifies build tools to use
build-backend = "setuptools.build_meta"
[project]
name = "amq_adapter"
version = "0.1.0"
description = "The Python implementation of the AMQ Adaptor for CleverMicro"
readme = "README.md"
license = { text = "Apache License 2.0" }
dependencies = [
"aiohttp~=3.11.11",
"pika~=1.3.2",
"flask",
"opentelemetry-api",
"opentelemetry-sdk",
"opentelemetry-exporter-otlp",
"opentelemetry-exporter-prometheus",
"opentelemetry-instrumentation-flask"
]