From 16af88004e3a99d8b909817356bebc32c0bb8450 Mon Sep 17 00:00:00 2001 From: QFer <46991941+QFer@users.noreply.github.com> Date: Fri, 6 Sep 2024 12:29:29 +0200 Subject: [PATCH] [QMI-NNN] Fixes for pypi acceptance (#99) * [QMI-NNN] Fixes for pypi acceptance * CHANGELOG.md removed from long_description --- setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 723482be..0f7407ea 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,8 @@ def read(*names, **kwargs): name="qmi", version="0.46.0-beta.0", description="The Quantum Measurement Infrastructure framework", - long_description="{}\n{}".format(read("README.md"), read("CHANGELOG.md")), + long_description="{}\n".format(read('README.md')), + long_description_content_type='text/markdown', author="QuTech", author_email="", url="https://github.com/QuTech-Delft/QMI", @@ -40,7 +41,7 @@ def read(*names, **kwargs): "Programming Language :: Python :: 3.11", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", - "Topic:: Scientific / Engineering:: Physics", + "Topic :: Scientific/Engineering :: Physics", ], project_urls={ "Changelog": "https://github.com/QuTech-Delft/QMI/CHANGELOG.md",