From d0d35166ab2a229c0f373fe2e1a3304020054098 Mon Sep 17 00:00:00 2001 From: jo Date: Thu, 22 Jun 2023 17:26:04 +0200 Subject: [PATCH] chore: remove changelog from package description --- setup.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 8b4c974..e0d959c 100644 --- a/setup.py +++ b/setup.py @@ -3,9 +3,6 @@ with open("README.rst") as readme_file: readme = readme_file.read() -with open("CHANGELOG.rst") as changelog_file: - changelog = changelog_file.read() - version = {} with open("hcloud/__version__.py") as fp: exec(fp.read(), version) @@ -15,7 +12,7 @@ version=version["VERSION"], keywords="hcloud hetzner cloud", description="Official Hetzner Cloud python library", - long_description=readme + "\n\n" + changelog, + long_description=readme, author="Hetzner Cloud GmbH", author_email="support-cloud@hetzner.com", url="https://github.com/hetznercloud/hcloud-python",