From ff12d371f50586625f35138dd37f2c160112e50f Mon Sep 17 00:00:00 2001 From: Formartha Date: Sun, 10 Mar 2024 20:56:01 +0200 Subject: [PATCH] changes per ci --- setup.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/setup.py b/setup.py index 25ff1a2..c575cce 100644 --- a/setup.py +++ b/setup.py @@ -2,10 +2,15 @@ VERSION_NUMBER = "1.0.0" +# Load the README file as the long description +with open("README.md", "r", encoding="utf-8") as fh: + long_description = fh.read() setup(name="pytest-ai1899", version=VERSION_NUMBER, description="pytest plugin for connecting to ai1899 smart system stack", + long_description=long_description, # Add the long_description field here + long_description_content_type="text/markdown", # Specify the content type include_package_data=True, author="Mor Dabastany", url="https://github.com/Formartha/pytest-ai1899",