Files
amq-adapter-python/pyproject.toml
T
hurui200320 99283fe31b
Unit test coverage / pytest (push) Failing after 1m20s
CI for pypl publish / publish-lib (push) Successful in 1m20s
fix(General): fix broken pipeline
2025-03-27 21:16:58 +08:00

45 lines
1.1 KiB
TOML

[build-system]
requires = ["setuptools>=61.0", "wheel"] # Specifies build tools to use
build-backend = "setuptools.build_meta"
[project]
name = "amq_adapter"
version = "0.2.2"
description = "Adapter for RabbitMQ to integrate a CleverThis python-code Service with CleverMicro platform"
readme = "README.md"
authors = [
{ name = "Stanislav Hejny", email = "stanislav.hejny@cleverthis.com" }
]
license = { text = "Apache License 2.0" }
urls = { Homepage = "https://git.cleverthis.com/clevermicro/amq-adapter-python" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3.11"
dependencies = [
"aio-pika~=9.5.5",
"aiohttp~=3.11.11",
"pika~=1.3.2",
"fastapi==0.115.6",
"opentelemetry-api",
"opentelemetry-sdk",
"opentelemetry-exporter-otlp",
"opentelemetry-exporter-prometheus",
"opentelemetry-instrumentation-pika"
]
[tool.setuptools.packages.find]
where = ["."]
exclude = ["tests*", "docs*"]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
"build",
"twine"
]