From d3f2c92391de586acc2f74961b6e09e88fd1600e Mon Sep 17 00:00:00 2001 From: marota Date: Fri, 3 Feb 2023 17:33:23 +0100 Subject: [PATCH] Update setup.py adding a comma as suggested here https://www.reddit.com/r/learnpython/comments/m3ku8q/long_description_has_syntax_errors_in_markup_and/ as publishing fails on github --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c0f257b..530ec78 100644 --- a/setup.py +++ b/setup.py @@ -53,5 +53,5 @@ include_package_data=True, install_requires=pkgs["required"], zip_safe=False, - entry_points={'console_scripts': ['expertop4grid=alphaDeesp.main:main']} + entry_points={'console_scripts': ['expertop4grid=alphaDeesp.main:main']}, )