Update the Ci/CD pipline to publish AMQ as library

This commit is contained in:
Stanislav Hejny
2025-02-27 03:56:45 +00:00
parent 1b0421964c
commit a633ecef4c
2 changed files with 63 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
from setuptools import setup, find_packages
setup(
name="amqp",
version="0.2.0",
author="Stanislav Hejny",
author_email="stanislav.hejny@cleverthis.com",
description="Adapter for RabbitMQ to integrate a CleverThis python-code Service with CleverMicro platform",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://git.cleverthis.com/cleverthis/clevermicro/amq-adapter-python",
packages=find_packages(),
install_requires=[
# dependencies here
"aiohttp~=3.11.11",
"fastapi==0.115.6",
"pika~=1.3.2",
"opentelemetry-api",
"opentelemetry-sdk",
"opentelemetry-exporter-otlp",
"opentelemetry-exporter-prometheus",
"opentelemetry-instrumentation-pika"
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.11",
)