-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: remove changelog from package description
- Loading branch information
Showing
1 changed file
with
1 addition
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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="[email protected]", | ||
url="https://github.com/hetznercloud/hcloud-python", | ||
|