Changeover to markdown
authorDaniel Feldroy <pydanny@users.noreply.github.com>
Mon, 21 Sep 2020 21:30:36 +0000 (14:30 -0700)
committerGitHub <noreply@github.com>
Mon, 21 Sep 2020 21:30:36 +0000 (14:30 -0700)
setup.py

index 63d3c8deb27b7caa7ab60a1d51ea4aab3b08b6ca..8fc7658d245284e820692affe15e06a806ea3b95 100755 (executable)
--- 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",