From: Daniel Feldroy Date: Mon, 21 Sep 2020 21:30:36 +0000 (-0700) Subject: Changeover to markdown X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0be6adca6f173ee7d2d0d5ec31d6b01650bac97e;p=cached-property.git Changeover to markdown --- diff --git a/setup.py b/setup.py index 63d3c8d..8fc7658 100755 --- a/setup.py +++ b/setup.py @@ -19,8 +19,8 @@ def read(fname): ).read() -readme = read("README.rst") -history = read("HISTORY.rst").replace(".. :changelog:", "") +readme = read("README.md") +history = read("HISTORY.md") if sys.argv[-1] == "publish": try: @@ -39,7 +39,7 @@ setup( version=__version__, description="A decorator for caching properties in classes.", long_description=readme + "\n\n" + history, - long_description_content_type="text/x-rst", + long_description_content_type="text/x-md", author="Daniel Greenfeld", author_email="pydanny@gmail.com", url="https://github.com/pydanny/cached-property",