Skip to content

Commit

Permalink
Merge pull request #11 from kickmaker/fix/target-markdown-description
Browse files Browse the repository at this point in the history
  • Loading branch information
ClovisCorde authored May 15, 2024
2 parents 042023e + e346c76 commit 4a63d60
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

kwds = {}
try:
kwds['long_description'] = open('README.rst').read()
kwds['long_description'] = open('README.md').read()
except IOError:
pass

Expand All @@ -20,6 +20,7 @@
name = "bsdiffhs",
author = "Kickmaker",
author_email = "[email protected]",
# second author_email = "[email protected]"
url = "https://github.com/kickmaker/bsdiffhs",
license = "BSD",
classifiers = [
Expand All @@ -36,7 +37,7 @@
"Topic :: Utilities",
],
description = "binary diff and patch using the BSDIFFHS-format",
long_description_content_type = "text/x-rst",
long_description_content_type = "text/markdown",
packages = ["bsdiffhs"],
ext_modules = [Extension(name = "bsdiffhs.core",
sources = ["bsdiffhs/core.c"])],
Expand Down

0 comments on commit 4a63d60

Please sign in to comment.